| | |
| | | type DictType int |
| | | |
| | | const ( |
| | | DictTypeMarket DictType = iota //庄口 |
| | | DictTypeWorkshop //车间 |
| | | DictTypeColor //颜色 |
| | | DictTypeSpec //规格 |
| | | DictTypeMarket DictType = iota + 1 //庄口 |
| | | DictTypeWorkshop //车间 |
| | | DictTypeColor //颜色 |
| | | DictTypeSpec //规格 |
| | | ) |
| | | |
| | | type UserType int |
| | |
| | | UserTypeSub // 子账户 |
| | | ) |
| | | |
| | | type CodeStandardType int |
| | | |
| | | const ( |
| | | CodeStandardType_Workshop CodeStandardType = iota + 1 // 车间 |
| | | CodeStandardType_Fineness // 纤度登记 |
| | | CodeStandardType_Yield // 产量登记 |
| | | ) |
| | | |
| | | type CarFlag int |
| | | |
| | | const ( |
| | | LeftHalfCar CarFlag = iota + 1 //左半车 |
| | | RightHalfCar //右半车 |
| | | AllCar //全车结束 |
| | | //AllCar //全车结束 |
| | | ) |
| | | |
| | | type WorkshopType int |
| | | |
| | | const ( |
| | | Workshop WorkshopType = iota + 1 // 车间信息 |
| | | Group // 分组信息 |
| | | ) |
| | | |
| | | type CheckItem int |