| | |
| | | package request |
| | | |
| | | import "silkserver/constvar" |
| | | import ( |
| | | "github.com/shopspring/decimal" |
| | | "silkserver/constvar" |
| | | ) |
| | | |
| | | type GetDictList struct { |
| | | PageInfo |
| | |
| | | KeyWord string `json:"keyWord"` |
| | | } |
| | | |
| | | type SaveRankStandard struct { |
| | | RankStandard []RankStandard `json:"rankStandard"` |
| | | } |
| | | |
| | | type RankStandard struct { |
| | | LineId string `json:"lineId"` //行id |
| | | CheckItem constvar.CheckItem `json:"checkItem"` //检查项目名称 |
| | | StartFineness decimal.Decimal `json:"startFineness"` //开始纤度 |
| | | EndFineness decimal.Decimal `json:"endFineness"` //结束纤度 |
| | | RankA decimal.Decimal `json:"rankA"` //野纤 |
| | | RankB decimal.Decimal `json:"rankB"` //大野 |
| | | RankC decimal.Decimal `json:"rankC"` //特野 |
| | | DynamicsRanks []DynamicsRank `json:"dynamicsRanks"` |
| | | } |
| | | |
| | | type DynamicsRank struct { |
| | | RankProp string `json:"rankProp"` //前缀key |
| | | RankName string `json:"rankName"` //等级名称 |
| | | RankValue decimal.Decimal `json:"rankValue"` //等级值 |
| | | } |
| | | |
| | | // ---------------------------------------车间--------------------------------- |
| | | type GetWorkshopManage struct { |
| | | PageInfo |