ctr_contract_dynamics.go 964 B

12345678910111213141516171819202122232425
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package contract
  5. import (
  6. "dashoo.cn/micro/app/model/contract/internal"
  7. "dashoo.cn/opms_libary/request"
  8. )
  9. // CtrContractDynamics is the golang structure for table ctr_contract_dynamics.
  10. type CtrContractDynamics internal.CtrContractDynamics
  11. // Fill with you ideas below.
  12. type CtrContractDynamicsListReq struct {
  13. request.PageReq
  14. SearchText string `json:"searchText"` // 操作人,操作内容
  15. ContractId int `json:"contractId"` // 合同ID
  16. OpnPeopleId int `json:"opnPeopleId"` // 操作人ID
  17. OpnPeople string `json:"opnPeople"` // 操作人
  18. // OpnDate *gtime.Time `json:"opnDate"` // 操作日期
  19. OpnType string `json:"opnType"` // 操作类型
  20. // OpnContent string `json:"opnContent"` // 操作内容
  21. }