Browse Source

添加前端传入绑定结构体

fix_wms
zhangxin 3 years ago
parent
commit
b61fd6add1
1 changed files with 22 additions and 4 deletions
  1. +22
    -4
      models/base/base.go

+ 22
- 4
models/base/base.go View File

@ -103,10 +103,10 @@ type ArtData struct {
*
******************************************************************************/
type OperationRelData struct {
Operation `xorm:"extends"`
Process `xorm:"extends"`
ArticleAtcodLst `xorm:"extends"`
StepType `xorm:"extends"`
Operation `xorm:"extends"`
Process `xorm:"extends"`
ArticleAtcodLst `xorm:"extends"`
StepType `xorm:"extends"`
}
/******************************************************************************
@ -125,3 +125,21 @@ type OPCCommunicateData struct {
OPCBasicComInfo `xorm:"extends"`
OPCComRule `xorm:"extends"`
}
/******************************************************************************
*
* @Struct Name : ArtData
*-----------------------------------------------------------------------------
*
* @Description : 物料分配属性
*
* @Author : 娄文智
*
* @Date : 2021-05-26
*
******************************************************************************/
type ProcessWPInsert struct {
PO int `json:"po"`
WorkLineId string `json:"workLineId"`
ProcessWorkPlaceLstLi []ProcessWorkPlaceLst `json:"processWorkPlaceLstLi"`
}

Loading…
Cancel
Save