Commit c74e5326 authored by shihuajun's avatar shihuajun

路由需求枚举类型

parent f2c293ff
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 8:28
* @ describing
*/
@Getter
public enum BusinessType {
CASH("CASH","VCC业务"),
VCC("VCC","VCC业务");
private String value;
private String desc;
BusinessType(String value,String desc){
this.value = value;
this.desc = desc;
}
}
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 8:49
* @ describing
*/
@Getter
public enum FundType {
BANK("BANK","银行"),
CONSUMER_FUND("CONSUMER_FUND","消金"),
TRUST("TRUST","信托"),
INTERBANK("INTER_BANK","同业"),
SMALL_LOAN("SMALL_LOAN","小贷");
private String value;
private String desc;
FundType(String value,String desc){
this.value = value;
this.desc = desc;
}
}
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 8:43
* @ describing
*/
@Getter
public enum OrganizationType {
DIVERSION("DIVERSION","导流"),
LOAN("LOAN","助贷");
private String value;
private String desc;
OrganizationType(String value,String desc){
this.value = value;
this.desc = desc;
}
}
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 8:49
* @ describing
*/
@Getter
public enum SystemType {
MO("MO","中台"),
XYQB("XYQB","信用钱包");
private String value;
private String desc;
SystemType(String value, String desc){
this.value = value;
this.desc = desc;
}
}
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 9:07
* @ describing
*/
@Getter
public enum UserLevel {
LEVEL1("LEVEL1","等级1"),
LEVEL2("LEVEL2","等级2"),
LEVEL3("LEVEL3","等级3"),
LEVEL4("LEVEL4","等级4"),
LEVEL5("LEVEL5","等级5"),
LEVEL6("LEVEL6","等级6"),
LEVEL7("LEVEL7","等级7"),
NO_LEVEL("NO_LEVEL","无等级");
private String value;
private String desc;
UserLevel(String value, String desc){
this.value = value;
this.desc = desc;
}
}
package com.quantgroup.asset.distribution.enums.route;
import lombok.Getter;
/**
* @author shihuajun
* @date 2021/8/21 9:07
* @ describing
*/
@Getter
public enum UserTag {
INITIAL_APPLICATION("INITIAL_APPLICATION","首申"),
REAPPLICATION("REAPPLICATION","复申"),
RE_LOAN("RE_LOAN","复贷"),
NO_ABLES("NO_ABLES","无标签"),
OTHERS("OTHERS","其他");
private String value;
private String desc;
UserTag(String value, String desc){
this.value = value;
this.desc = desc;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment