zhangqian
2024-04-07 2234e8fa97e85e1e69a6f970416602f283e09df6
controllers/request/fineness.go
@@ -9,7 +9,7 @@
   Number        string          `gorm:"type:varchar(255);not null;comment:编号" json:"number"`         //编号
   FinishDate    string          `gorm:"type:varchar(255);not null;comment:落丝时间" json:"finishDate"`   //落丝时间
   Workshop      string          `gorm:"type:varchar(255);not null;comment:车间" json:"name"`           //车间
   WorkshopGroup string          `gorm:"type:varchar(255);not null;comment:车组" json:"workshopGroup"`  //车组
   WorkshopGroup int             `gorm:"type:int(11);not null;default:0;comment:车组" json:"workshopGroup"` //车组
   Market        string          `gorm:"type:varchar(255);not null;comment:庄口" json:"market"`         //庄口
   Spec          string          `gorm:"type:varchar(255);not null;comment:规格" json:"spec"`           //规格
   Circle        uint8           `gorm:"not null;comment:回数" json:"circle"`                           //回数
@@ -21,11 +21,12 @@
type FinenessItem struct {
   Position int8            `json:"position"` //车号
   Fineness decimal.Decimal `json:"fineness"` //纤度
   Fineness float32         `json:"fineness"` //纤度
   Quantity decimal.Decimal `json:"quantity"` //数量
   Sum      decimal.Decimal `json:"sum"`      //合计
}
type GetFinenessRegisterList struct {
   PageInfo
   Keyword string `json:"keyword" form:"keyword"`
}