train_sale_apply.go 2.9 KB

123456789101112131415161718192021222324252627282930313233
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // TrainSaleApply is the golang structure for table train_sale_apply.
  9. type TrainSaleApply struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. DistributorId int `orm:"distributor_id" json:"distributorId"` // 渠道ID
  12. DistributorName string `orm:"distributor_name" json:"distributorName"` // 渠道名称
  13. MainProduct string `orm:"main_product" json:"mainProduct"` // 主营产品
  14. MainCustomer string `orm:"main_customer" json:"mainCustomer"` // 主要客户
  15. Trainees string `orm:"trainees" json:"trainees"` // 参训人员
  16. TrainingDate *gtime.Time `orm:"training_date" json:"trainingDate"` // 培训日期
  17. SpecificStartTime *gtime.Time `orm:"specific_start_time" json:"specificStartTime"` // 开始时间
  18. SpecificEndTime *gtime.Time `orm:"specific_end_time" json:"specificEndTime"` // 结束时间
  19. TrainTitle string `orm:"train_title" json:"trainTitle"` // 培训主题
  20. InstructorRequire string `orm:"instructor_require" json:"instructorRequire"` // 讲师要求
  21. FocusPoint string `orm:"focus_point" json:"focusPoint"` // 关注要点
  22. ApplyType string `orm:"apply_type" json:"applyType"` // 申请状态(10 未总结 20 总结完成)
  23. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建人
  24. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  25. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  26. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新人
  27. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  28. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  29. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  30. }