| 12345678910111213141516171819202122232425262728293031323334353637 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // TrainSaleApply is the golang structure for table train_sale_apply.
- type TrainSaleApply struct {
- Id int `orm:"id,primary" json:"id"` // 主键
- DistributorId int `orm:"distributor_id" json:"distributorId"` // 渠道ID
- DistributorName string `orm:"distributor_name" json:"distributorName"` // 渠道名称
- MainProduct string `orm:"main_product" json:"mainProduct"` // 主营产品
- MainCustomer string `orm:"main_customer" json:"mainCustomer"` // 主要客户
- Trainees string `orm:"trainees" json:"trainees"` // 参训人员
- ExpectTrainDate *gtime.Time `orm:"expect_train_date" json:"expectTrainDate"` // 期望培训日期
- ExpectStartTime *gtime.Time `orm:"expect_start_time" json:"expectStartTime"` // 期望开始时间
- ExpectEndTime *gtime.Time `orm:"expect_end_time" json:"expectEndTime"` // 期望结束时间
- TrainTitle string `orm:"train_title" json:"trainTitle"` // 培训主题
- InstructorRequire string `orm:"instructor_require" json:"instructorRequire"` // 讲师要求
- FocusPoint string `orm:"focus_point" json:"focusPoint"` // 关注要点
- TrainInstructor string `orm:"train_instructor" json:"trainInstructor"` // 培训讲师
- TrainDate *gtime.Time `orm:"train_date" json:"trainDate"` // 培训日期
- SpecificStartTime *gtime.Time `orm:"specific_start_time" json:"specificStartTime"` // 开始时间
- SpecificEndTime *gtime.Time `orm:"specific_end_time" json:"specificEndTime"` // 结束时间
- ApplyType string `orm:"apply_type" json:"applyType"` // 申请状态(10 已提交 20 已确认 30 总结完成)
- CreatedBy int `orm:"created_by" json:"createdBy"` // 创建人
- CreatedName string `orm:"created_name" json:"createdName"` // 创建人
- CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
- UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新人
- UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
- UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
- DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
- }
|