zhangqian
2023-08-11 7f589e6514eb4074d9a558bf4ff7efef3143b9db
model/serviceOrderStatus.go
@@ -12,18 +12,18 @@
   // ServiceOrderStatus 服务单状态
   ServiceOrderStatus struct {
      Id   int    `json:"id" gorm:"column:id;type:int;primary_key;AUTO_INCREMENT"`
       Name string `json:"name" gorm:"column:name;type:varchar(255);not null;default:'';comment:名称"`
      Name string `json:"name" gorm:"column:name;type:varchar(255);not null;default:'';comment:名称"`
   }
   // ServiceOrderStatusSearch 服务单状态搜索条件
   ServiceOrderStatusSearch struct {
      ServiceOrderStatus
      Orm *gorm.DB
        QueryClass  constvar.ServiceOrderStatusQueryClass
        KeywordType constvar.ServiceOrderStatusKeywordType
        Keyword     string
        PageNum  int
        PageSize int
      Orm         *gorm.DB
      QueryClass  constvar.ServiceOrderStatusQueryClass
      KeywordType constvar.ServiceOrderStatusKeywordType
      Keyword     string
      PageNum     int
      PageSize    int
   }
)