12345678910111213141516171819202122232425262728293031323334353637383940 |
- package v1
- type AddFactoryReq struct {
- Count int64 `json:"count"`
- Genre int64 `json:"genre"` //0 购买,1 置换
- Recall int64 `json:"recall"` //关联召回批次数
- Pastureid string `json:"pastureid"`
- RecallID []int64 `json:"recallid"` //召回id
- }
- type GetFactoryReq struct {
- Index int64 `json:"index"`
- PageSize int64 `json:"pagesize"`
- Batch string `json:"batch"` //批次
- Genre int64 `json:"genre"` //0 购买,1 置换
- StartCount int64 `json:"startcount"` //重量
- EndCount int64 `json:"endcount"`
- CreateName string `json:"createname"` //登记人
- StartDate string `json:"startdate"` //登记时间
- EndDate string `json:"enddate"`
- RecallID int64 `json:"recallid"` //召回id
- Pastureid string `json:"pastureid"`
- }
- type Factory struct {
- Id int64 `json:"id"`
- PastureId string `json:"pastureid"` //牧场id
- PastureName string `json:"pasturename"` //牧场名称
- Count int64 `json:"count"` //出厂数量
- Batch string `json:"batch"` //出厂批次
- Genre int64 `json:"genre"` //0 购买,1 置换
- Recall int64 `json:"recall"` //关联召回批次数
- CreateName string `json:"createname"` //登记人
- CreateTime string `json:"createtime"` //登记时间
- }
- type GetFactoryRes struct {
- List []*Factory `json:"list"`
- Total int64 `json:"total"`
- }
|