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