info_auto_default.go 1.9 KB

123456789101112131415161718192021222324
  1. // Code generated by sql2gorm. DO NOT EDIT.
  2. package entity
  3. // 违约扣款配置
  4. type InfoAutoDefault struct {
  5. AutoDefaultID int64 `gorm:"column:auto_default_id;primary_key;AUTO_INCREMENT"` // 自动处理规则id
  6. EnterpriseID string `gorm:"column:enterprise_id;NOT NULL"` // 企业id
  7. SketchOtherTimeOut int64 `gorm:"column:sketch_other_time_out;NOT NULL"` // (初稿违约扣款1)
  8. SketchOtherNotUpload int64 `gorm:"column:sketch_other_not_upload;NOT NULL"` // (初稿违约扣款2)
  9. LinkReplaceTimeOut int64 `gorm:"column:link_replace_time_out;NOT NULL"` // (链接质检违约扣款1)
  10. LinkReplaceNotUpload int64 `gorm:"column:link_replace_not_upload;NOT NULL"` // (链接质检违约扣款2)
  11. DataReplaceTimeOut int64 `gorm:"column:data_replace_time_out;NOT NULL"` // (数据质检违约扣款1)
  12. DataReplaceNotUpload int64 `gorm:"column:data_replace_not_upload;NOT NULL"` // (数据质检违约扣款2)
  13. SketchOtherTimeOutOperator string `gorm:"column:sketch_other_time_out_operator;NOT NULL"` // (初稿违约扣款1)
  14. SketchOtherNotUploadOperator string `gorm:"column:sketch_other_not_upload_operator;NOT NULL"` // (初稿违约扣款2)
  15. LinkReplaceTimeOutOperator string `gorm:"column:link_replace_time_out_operator;NOT NULL"` // (链接质检违约扣款1)
  16. LinkReplaceNotUploadOperator string `gorm:"column:link_replace_not_upload_operator;NOT NULL"` // (链接质检违约扣款2)
  17. DataReplaceTimeOutOperator string `gorm:"column:data_replace_time_out_operator;NOT NULL"` // (数据质检违约扣款1)
  18. DataReplaceNotUploadOperator string `gorm:"column:data_replace_not_upload_operator;NOT NULL"` // (数据质检违约扣款2)
  19. }
  20. func (m *InfoAutoDefault) TableName() string {
  21. return "info_auto_default_handle"
  22. }