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. "dashoo.cn/opms_libary/request"
  7. "github.com/gogf/gf/os/gtime"
  8. "dashoo.cn/micro/app/model/cust/internal"
  9. )
  10. // CustCustomerDynamics is the golang structure for table cust_customer_dynamics.
  11. type CustCustomerDynamics internal.CustCustomerDynamics
  12. // Fill with you ideas below.
  13. //写入字段
  14. type AddCustomerDynameicsReq struct {
  15. OpnPeopleId int ` json:"opnPeopleId"` // 操作人ID
  16. OpnPeople string ` json:"opnPeople"` // 操作人
  17. CustId int64 ` json:"custId"` //客户Id
  18. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  19. OpnType string ` json:"opnType"` // 操作类型
  20. Remark string `json:"remark"` //备注
  21. OpnContent interface{} ` json:"opnContent"` // 操作内容
  22. }
  23. type CustomerDynameicsReq struct {
  24. CustId int ` json:"custId"` // 客户Id
  25. request.PageReq
  26. }
  27. //客户表动态记录
  28. type CustomerDynameicsRep struct {
  29. OpnPeople string ` json:"opnPeople"` // 操作人
  30. OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
  31. OpnType string ` json:"opnType"` // 操作类型
  32. OpnContent string ` json:"opnContent"` // 操作内容
  33. //List []*CustCustomer ` json:"list"`
  34. }