This commit is contained in:
2026-01-08 10:49:30 +08:00
parent 21b9acf3c9
commit e5be277941
39 changed files with 1290 additions and 46 deletions

View File

@@ -1,7 +1,10 @@
package com.czg;
import java.util.List;
/**
* 支付相关常量
*
* @author yjjie
* @date 2026/1/7 09:20
*/
@@ -34,7 +37,6 @@ public interface PayCst {
* 待处理
*/
public static final String INIT = "INIT";
/**
* 审核中
*/
@@ -54,6 +56,13 @@ public interface PayCst {
* 失败
*/
public static final String REJECTED = "REJECTED";
/**
* 需要查询的状态列表
* 待处理、待签约、待审核的进件
*/
public static final List<String> NEED_QUERY_LIST = List.of(INIT, AUDIT, SIGN);
}
/**

View File

@@ -10,9 +10,14 @@ import lombok.Data;
*/
@Data
public class AggregateMerchantDto {
/**
* 商户Id
*/
private Long shopId;
/**
* 【必填】
* 自己生成 CZGyyyy-MM-dd HH:mm:ss.SSS
* 商户编号(在当前系统唯一)
*/
private String merchantCode;

View File

@@ -16,7 +16,7 @@ public class MerchantBaseInfoDto {
* 商户类型
* 0: 个体商户;
* 1: 企业商户;
* 3: 小微商户
* 3: 小微商户 暂不支持
*/
private String userType;