123456789101112131415161718192021222324252627282930 |
- package contract
- import (
- "hongze/hongze_mobile_admin/models/tables/company_contract"
- "hongze/hongze_mobile_admin/models/tables/contract_approval"
- "rdluck_tools/paging"
- "time"
- )
- type CompanyContractDetailResp struct {
- *company_contract.CompanyContractDetail
- }
- type ContractOperationRecordListResp struct {
- Id int ``
- ContractId int `description:"合同id"`
- Operation string `description:"操作类型,add:新增,edit:编辑,apply:发起审批,cancel_apply:撤回审批,reject:拒绝审批,approval:审批操作;长度36位"`
- OpUserId int `description:"操作人id"`
- OpUserName string `description:"操作人名称"`
- Remark string `description:"备注,长度255位"`
- ApprovalRecordId int `orm:"column(approval_record_id)";description:"审批流id"`
- CreateTime time.Time `description:"日志添加时间"`
- CreateTimeStr string `description:"日志添加时间"`
- }
- //审批列表
- type ContractApprovalListResp struct {
- Paging *paging.PagingItem
- List []*contract_approval.ContractApprovalList `description:"列表数据"`
- }
|