cust_customer_dynamics.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. CustId int64 ` json:"custId"` //客户Id
  17. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  18. OpnType string ` json:"opnType"` // 操作类型
  19. Remark string `json:"remark"` //备注
  20. OpnContent interface{} ` json:"opnContent"` // 操作内容
  21. }
  22. type CustomerDynameicsReq struct {
  23. CustId int ` json:"custId"` // 客户Id
  24. //request.PageReq
  25. }
  26. //客户表动态记录
  27. type CustomerDynameicsRep struct {
  28. OpnPeople string ` json:"opnPeople"` // 操作人
  29. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  30. OpnType string ` json:"opnType"` // 操作类型
  31. OpnContent string ` json:"opnContent"` // 操作内容
  32. //List []*CustCustomer ` json:"list"`
  33. }