| 12345678910111213141516171819202122232425 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package contract
- import (
- "dashoo.cn/micro/app/model/contract/internal"
- "dashoo.cn/opms_libary/request"
- )
- // CtrContractDynamics is the golang structure for table ctr_contract_dynamics.
- type CtrContractDynamics internal.CtrContractDynamics
- // Fill with you ideas below.
- type CtrContractDynamicsListReq struct {
- request.PageReq
- SearchText string `json:"searchText"` // 操作人,操作内容
- ContractId int `json:"contractId"` // 合同ID
- OpnPeopleId int `json:"opnPeopleId"` // 操作人ID
- OpnPeople string `json:"opnPeople"` // 操作人
- // OpnDate *gtime.Time `json:"opnDate"` // 操作日期
- OpnType string `json:"opnType"` // 操作类型
- // OpnContent string `json:"opnContent"` // 操作内容
- }
|