train_sale_apply.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. ExpectTrainDate *gtime.Time `orm:"expect_train_date" json:"expectTrainDate"` // 期望培训日期
  17. ExpectStartTime *gtime.Time `orm:"expect_start_time" json:"expectStartTime"` // 期望开始时间
  18. ExpectEndTime *gtime.Time `orm:"expect_end_time" json:"expectEndTime"` // 期望结束时间
  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. TrainInstructor string `orm:"train_instructor" json:"trainInstructor"` // 培训讲师
  23. TrainDate *gtime.Time `orm:"train_date" json:"trainDate"` // 培训日期
  24. SpecificStartTime *gtime.Time `orm:"specific_start_time" json:"specificStartTime"` // 开始时间
  25. SpecificEndTime *gtime.Time `orm:"specific_end_time" json:"specificEndTime"` // 结束时间
  26. ApplyType string `orm:"apply_type" json:"applyType"` // 申请状态(10 已提交 20 已确认 30 总结完成)
  27. CreatedBy int `orm:"created_by" json:"createdBy"` // 创建人
  28. CreatedName string `orm:"created_name" json:"createdName"` // 创建人
  29. CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
  30. UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新人
  31. UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
  32. UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
  33. DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
  34. }