skyouc
2025-03-31 5829fb5f7252bb433b9b8f24d73d50afac1f224f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.vincent.rsf.server.system.enums;
 
/**
 * @author Ryan
 * @version 1.0
 * @title CompanyType
 * @description
 * @create 2025/3/10 16:45
 */
public enum CompanyType {
 
    //重置类型:年
    COMPANY_TYPE_SUPPLIER("supplier", "供应商"),
    //重置类型:月
    COMPANY_TYPE_SHIPPER("shipper", "货主"),
    //重置类型:日
    COMPANY_TYPE_CUSTOMER("customer", "客户")
    ;
 
    public String type;
    public String desc;
 
    CompanyType(String type , String desc) {
        this.type = type;
        this.desc = desc;
    }
}