From b61fd6add10a97ef39320eea93a2e8ecb47e4d77 Mon Sep 17 00:00:00 2001 From: zhangxin Date: Wed, 28 Jul 2021 15:45:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=89=8D=E7=AB=AF=E4=BC=A0?= =?UTF-8?q?=E5=85=A5=E7=BB=91=E5=AE=9A=E7=BB=93=E6=9E=84=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/base/base.go | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/models/base/base.go b/models/base/base.go index 927a5aa..3e331ca 100644 --- a/models/base/base.go +++ b/models/base/base.go @@ -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"` +}