liujiandao
2024-04-15 32f4f2b0d507c99d9b4fb7d555b0c2523a92c503
request/operation.go
@@ -30,9 +30,12 @@
   ReceiverAddr      string              `json:"receiverAddr" gorm:"type:varchar(255);comment:收货地址"`
   LocationId        int                 `json:"locationId"   gorm:"type:int;not null;comment:源位置id"`     //源位置id
   ToLocationId      int                 `json:"toLocationId"    gorm:"type:int;not null;comment:仓库位置id"` //目标位置id
   Manager           string              `json:"manager" gorm:"type:varchar(255);comment:主管"`
   Accountant        string              `json:"accountant" gorm:"type:varchar(255);comment:会计"`
   Custodian         string              `json:"custodian" gorm:"type:varchar(255);comment:保管员"`
   ManagerId         string              `json:"managerId" gorm:"type:varchar(255);comment:主管id"`
   Manager           string              `json:"manager" gorm:"type:varchar(255);comment:主管名称"`
   AccountantId      string              `json:"accountantId" gorm:"type:varchar(255);comment:会计id"`
   Accountant        string              `json:"accountant" gorm:"type:varchar(255);comment:会计名称"`
   CustodianId       string              `json:"custodianId" gorm:"type:varchar(255);comment:保管员id"`
   Custodian         string              `json:"custodian" gorm:"type:varchar(255);comment:保管员名称"`
}
type OperationDetails struct {
@@ -79,9 +82,12 @@
   ReceiverAddr      string                     `json:"receiverAddr" gorm:"type:varchar(255);comment:收货地址"`
   LocationId        int                        `json:"locationId"   gorm:"type:int;not null;comment:源位置id"`     //源位置id
   ToLocationId      int                        `json:"toLocationId"    gorm:"type:int;not null;comment:仓库位置id"` //目标位置id
   Manager           string                     `json:"manager" gorm:"type:varchar(255);comment:主管"`
   Accountant        string                     `json:"accountant" gorm:"type:varchar(255);comment:会计"`
   Custodian         string                     `json:"custodian" gorm:"type:varchar(255);comment:保管员"`
   ManagerId         string                     `json:"managerId" gorm:"type:varchar(255);comment:主管id"`
   Manager           string                     `json:"manager" gorm:"type:varchar(255);comment:主管名称"`
   AccountantId      string                     `json:"accountantId" gorm:"type:varchar(255);comment:会计id"`
   Accountant        string                     `json:"accountant" gorm:"type:varchar(255);comment:会计名称"`
   CustodianId       string                     `json:"custodianId" gorm:"type:varchar(255);comment:保管员id"`
   Custodian         string                     `json:"custodian" gorm:"type:varchar(255);comment:保管员名称"`
}
type OperationAllList struct {