contract_set.go 1.2 KB

123456789101112131415161718192021
  1. // Code generated by sql2gorm. DO NOT EDIT.
  2. package gorm_model
  3. import (
  4. "time"
  5. )
  6. type YoungeeContractSet struct {
  7. BreakManageID int `gorm:"column:break_manage_id;primary_key;AUTO_INCREMENT"` // 违约自动管理策略id
  8. ProejctType int `gorm:"column:proejct_type;NOT NULL"` // 项目类型:1:全流程 2:专项
  9. ProjectForm int `gorm:"column:project_form;NOT NULL"` // 任务形式:1-4分别代表实体商品寄拍、虚拟产品测评、线下探店打卡、素材微原创
  10. FeeForm int `gorm:"column:fee_form;NOT NULL"` // 稿费形式:1,2,3分别代表产品置换、固定稿费、自报价
  11. BreakType time.Time `gorm:"column:break_type"` // 违约类型:1-4:初稿、脚本、链接和数据
  12. NouploadCutRatio time.Time `gorm:"column:noupload_cut_ratio"` // 未上传 扣款比例
  13. NotimeuploadCutRatio time.Time `gorm:"column:notimeupload_cut_ratio"` // 未按照规定时间上传脚本 扣款比例
  14. }
  15. func (m *YoungeeContractSet) TableName() string {
  16. return "youngee_contract_set"
  17. }