pay.go 232 B

12345678910111213
  1. package model
  2. // PayAudit 缴费审核状态枚举值
  3. const (
  4. // 未提交审核
  5. PayAuditNotSubmit int = 1
  6. // 待审核
  7. PayAuditWait int = 2
  8. // 审核通过
  9. PayAuditPass int = 3
  10. // 审核不通过
  11. PayAuditNotPass int = 4
  12. )