approval.go 293 B

12345678
  1. package approval
  2. type CompanyApplyApproveReq struct {
  3. CompanyId int `description:"客户id"`
  4. Status int `description:"审批状态,1:通过,2:拒绝"`
  5. Remark string `description:"审批理由"`
  6. CompanyContractId int `description:"合同id"`
  7. }