// ========================================================================== // 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"` // 操作人 OpnDate *gtime.Time ` json:"opnDate"` // 操作日期 OpnType string ` json:"opnType"` // 操作类型 OpnContent string ` json:"opnContent"` // 操作内容 } //详情 type CustomerDynameicsRep struct { OpnPeople string ` json:"opnPeople"` // 操作人 OpnDate *gtime.Time ` json:"opnDate"` // 操作日期 OpnType string ` json:"opnType"` // 操作类型 OpnContent string ` json:"opnContent"` // 操作内容 }