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