info_auto_default.go 2.6 KB

12345678910111213141516171819202122232425262728
  1. package entity
  2. // Code generated by sql2gorm. DO NOT EDIT.
  3. type InfoAutoDefault struct {
  4. AutoDefaultID int64 `gorm:"column:auto_default_id;primary_key;AUTO_INCREMENT"` // 自动处理规则id
  5. EnterpriseId int64 `gorm:"column:enterprise_id"` // 企业id
  6. SketchReplaceNotUpload int64 `gorm:"column:sketch_replace_not_upload"` // 初稿违约 产品置换 未上传初稿
  7. SketchReplaceTimeOut int64 `gorm:"column:sketch_replace_time_out"` // 初稿违约 产品置换 超时未上传初稿
  8. SketchOtherNotUpload int64 `gorm:"column:sketch_other_not_upload"` // 初稿违约 自报价、固定稿费 未上传初稿
  9. SketchOtherTimeOut int64 `gorm:"column:sketch_other_time_out"` // 初稿违约 自报价、固定稿费 超时未上传初稿
  10. ScriptReplaceNotUpload int64 `gorm:"column:script_replace_not_upload"` // 脚本违约 产品置换 未上传脚本
  11. ScriptReplaceTimeOut int64 `gorm:"column:script_replace_time_out"` // 脚本违约 产品置换 超时未上传脚本
  12. ScriptOtherNotUpload int64 `gorm:"column:script_other_not_upload"` // 脚本违约 自报价、固定稿费 未上传脚本
  13. ScriptOtherTimeOut int64 `gorm:"column:script_other_time_out"` // 脚本违约 自报价、固定稿费 超时未上传脚本
  14. LinkReplaceNotUpload int64 `gorm:"column:link_replace_not_upload"` // 链接违约 产品置换 未上传链接
  15. LinkReplaceTimeOut int64 `gorm:"column:link_replace_time_out"` // 链接违约 产品置换 超时未上传链接
  16. LinkOtherNotUpload int64 `gorm:"column:link_other_not_upload"` // 链接违约 自报价、固定稿费 未上传链接
  17. LinkOtherTimeOut int64 `gorm:"column:link_other_time_out"` // 链接违约 自报价、固定稿费 超时未上传链接
  18. DataReplaceNotUpload int64 `gorm:"column:data_replace_not_upload"` // 数据违约 产品置换 未上传数据
  19. DataReplaceTimeOut int64 `gorm:"column:data_replace_time_out"` // 数据违约 产品置换 超时未上传数据
  20. DataOtherNotUpload int64 `gorm:"column:data_other_not_upload"` // 数据违约 自报价、固定稿费 未上传数据
  21. DataOtherTimeOut int64 `gorm:"column:data_other_time_out"` // 数据违约 自报价、固定稿费 超时未上传数据
  22. }
  23. func (m *InfoAutoDefault) TableName() string {
  24. return "info_auto_default_handle"
  25. }