IProfitSharing

This commit is contained in:
2025-02-12 14:30:47 +08:00
parent 255ea42f81
commit 3f493b0d81
13 changed files with 407 additions and 20 deletions

View File

@ -1,23 +1,16 @@
package com.ycwl.basic.profitsharing.enums;
public enum ProfitSharingUserType {
MERCHANT("MERCHANT_ID", "商户号"),
PERSON_SUB("PERSONAL_SUB_OPENID", "子商户个人"),
PERSON_PARENT("PERSONAL_OPENID", "父商户个人");
private final String code;
private final String desc;
SCENIC("SCENIC", "景区方"),
AGENT("AGENT", "代理商方"),
PROVIDER("PROVIDER", "技术提供方"),
SELF("SELF", "自己"),
;
public final String code;
public final String desc;
ProfitSharingUserType(String code, String desc) {
this.code = code;
this.desc = desc;
}
public String getCode() {
return code;
}
public String getDesc() {
return desc;
}
}

View File

@ -0,0 +1,24 @@
package com.ycwl.basic.profitsharing.enums;
public enum ProfitSharingWxPayType {
MERCHANT("MERCHANT_ID", "商户号"),
PERSON_SUB("PERSONAL_SUB_OPENID", "子商户个人"),
PERSON_PARENT("PERSONAL_OPENID", "父商户个人"),
MANUAL("MANUAL", "手动结算");
private final String code;
private final String desc;
ProfitSharingWxPayType(String code, String desc) {
this.code = code;
this.desc = desc;
}
public String getCode() {
return code;
}
public String getDesc() {
return desc;
}
}