diff --git a/upstream/hdh/hdh_goods.go b/upstream/hdh/hdh_goods.go
index 033c00e66ee77253043fc76b3bc4f0d8445f42b0..c4fe70b89b51107ef7522627aa54e6bd3b5c3ba5 100644
--- a/upstream/hdh/hdh_goods.go
+++ b/upstream/hdh/hdh_goods.go
@@ -27,6 +27,7 @@ type GoodsNotifyRes struct {
 	SkuNameValues      []SkuNameValues    `json:"skuNameValues"`      //规格信息
 	ThirdCateID        int                `json:"thirdCateId"`        //
 	ThirdCateName      string             `json:"thirdCateName"`      //
+	RichDesc           string             `json:"richDesc"`           //图文详情 html片段
 }
 type ItemLimitCondition struct {
 	CycleLimitQuantity int `json:"cycleLimitQuantity"` //周期限购数量
@@ -36,9 +37,9 @@ type SkuChannels struct {
 	ChannelName   string  `json:"channelName"`   //渠道名称
 	ChannelType   string  `json:"channelType"`   //渠道类型
 	ItemCode      string  `json:"itemCode"`      //商品编码 如果系统需要在会订货系统导入
-	OriginalPrice int     `json:"originalPrice"` //原价
+	OriginalPrice float64 `json:"originalPrice"` //原价
 	Price         float64 `json:"price"`         //现价
-	SalesStatus   float64 `json:"salesStatus"`   //商品销售状态(0为不可售 1可售)
+	SalesStatus   int     `json:"salesStatus"`   //商品销售状态(0为不可售 1可售)
 	Stock         int     `json:"stock"`         //当前渠道商品的库存数
 }
 type SkuValues struct {
diff --git a/upstream/hdh/hdh_order.go b/upstream/hdh/hdh_order.go
index 95607bf66a6da2d4dcd2bfddd75b225923d9c541..890c3966f81f7373c348cf7c3e4e3d3192b1267b 100644
--- a/upstream/hdh/hdh_order.go
+++ b/upstream/hdh/hdh_order.go
@@ -31,7 +31,11 @@ type OrderSkuList struct {
 }
 
 type OerCreateRes struct {
-	Code    string `json:"code"`
+	Code string `json:"code"`
+	Data struct {
+		OrderNum     string `json:"orderNum"`
+		UserOrderNum string `json:"userOrderNum"`
+	} `json:"data"`
 	Message string `json:"message"`
 	Success int    `json:"success"`
 }