cust_customer_dynamics.go 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package cust
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. "dashoo.cn/micro/app/model/cust/internal"
  8. )
  9. // CustCustomerDynamics is the golang structure for table cust_customer_dynamics.
  10. type CustCustomerDynamics internal.CustCustomerDynamics
  11. // Fill with you ideas below.
  12. //写入字段
  13. type AddCustomerDynameicsReq struct {
  14. OpnPeopleId int ` json:"opnPeopleId"` // 操作人ID
  15. OpnPeople string ` json:"opnPeople"` // 操作人
  16. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  17. OpnType string ` json:"opnType"` // 操作类型
  18. OpnContent string ` json:"opnContent"` // 操作内容
  19. }
  20. //详情
  21. type CustomerDynameicsRep struct {
  22. OpnPeople string ` json:"opnPeople"` // 操作人
  23. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  24. OpnType string ` json:"opnType"` // 操作类型
  25. OpnContent string ` json:"opnContent"` // 操作内容
  26. }