Merge branch 'master' of http://192.168.5.5:10010/r/aps/WMS
| | |
| | | util.ResponseFormat(c, code.RequestParamError, "查找失败") |
| | | return |
| | | } |
| | | for _, location := range list { |
| | | location.JointName = location.ParentId + "/" + location.Name |
| | | } |
| | | |
| | | util.ResponseFormatList(c, code.Success, list, int(total)) |
| | | } |
| | |
| | | Description: "", |
| | | InfoInstanceName: "swagger", |
| | | SwaggerTemplate: docTemplate, |
| | | LeftDelim: "{{", |
| | | RightDelim: "}}", |
| | | } |
| | | |
| | | func init() { |
| | |
| | | Notes string `json:"notes" gorm:"type:varchar(255);comment:外部备注"` //外部备注 |
| | | RecentlyCount string `json:"recentlyCount" gorm:"type:varchar(255);comment:最近盘点"` //最近盘点 |
| | | NextCount string `json:"nextCount" gorm:"type:varchar(255);comment:下次盘点"` //下次盘点 |
| | | JointName string `json:"jointName" gorm:"-"` //拼接名称 |
| | | } |
| | | |
| | | LocationSearch struct { |