| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package cust
- import (
- "github.com/gogf/gf/os/gtime"
- "dashoo.cn/micro/app/model/cust/internal"
- )
- // CustCustomerDynamics is the golang structure for table cust_customer_dynamics.
- type CustCustomerDynamics internal.CustCustomerDynamics
- // Fill with you ideas below.
- //写入字段
- type AddCustomerDynameicsReq struct {
- OpnPeopleId int ` json:"opnPeopleId"` // 操作人ID
- OpnPeople string ` json:"opnPeople"` // 操作人
- CustId int64 ` json:"custId"` //客户Id
- OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
- OpnType string ` json:"opnType"` // 操作类型
- Remark string `json:"remark"` //备注
- OpnContent interface{} ` json:"opnContent"` // 操作内容
- }
- type CustomerDynameicsReq struct {
- CustId int ` json:"custId"` // 客户Id
- //request.PageReq
- }
- //客户表动态记录
- type CustomerDynameicsRep struct {
- OpnPeople string ` json:"opnPeople"` // 操作人
- OpnDate *gtime.Time ` json:"opnDate"` // 操作日期
- OpnType string ` json:"opnType"` // 操作类型
- OpnContent string ` json:"opnContent"` // 操作内容
- //List []*CustCustomer ` json:"list"`
- }
|