approval.go 347 B

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