|
|
@@ -29,6 +29,7 @@ type ErmcpDeliveryGoods struct {
|
|
|
CATEGORYID int32 `json:"categoryid" xorm:"'CATEGORYID'"` // 类别ID(SEQ_WRCATEGORY)
|
|
|
DGSTATUS int32 `json:"dgstatus" xorm:"'DGSTATUS'"` // 品种状态 - 作废 - 0:未激活 1:正常
|
|
|
AREAUSERID int64 `json:"areauserid" xorm:"'AREAUSERID'"` // 所属机构
|
|
|
+ REMARK string `json:"remark" xorm:"'REMARK'"` // 备注
|
|
|
|
|
|
EnumdicName string `json:"enumdicname"` // 现货品种单位名称
|
|
|
ExcludeCfg int32 `json:"-"` // 排除已配置项 1-排除
|
|
|
@@ -53,6 +54,7 @@ func (r *ErmcpDeliveryGoods) buildSql() string {
|
|
|
" t.QTYDECIMALPLACE," +
|
|
|
" t.CATEGORYID," +
|
|
|
" t.DGSTATUS," +
|
|
|
+ " t.REMARK," +
|
|
|
" t.AREAUSERID" +
|
|
|
" FROM DELIVERYGOODS t" +
|
|
|
" WHERE 1 = 1"
|