You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
711 B
Java
37 lines
711 B
Java
2 years ago
|
package com.glxp.api.constant;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
import org.springframework.beans.factory.annotation.Value;
|
||
|
|
||
|
@Getter
|
||
|
@AllArgsConstructor
|
||
|
public enum BasicExportStatusTimeEnum {
|
||
|
|
||
|
/**
|
||
|
* 耗材字典
|
||
|
*/
|
||
|
BASIC_PRODUCTS("basic_products", "耗材字典"),
|
||
|
|
||
|
/**
|
||
|
* 往来单位字典
|
||
|
*/
|
||
|
BASIC_CORP("basic_corp", "往来单位字典"),
|
||
|
|
||
|
/**
|
||
|
* 国家库DI数据
|
||
|
*/
|
||
|
DB_DI_PRODUCTS("db_di_products", "国家库DI数据"),
|
||
|
|
||
|
/**
|
||
|
* 首营资质
|
||
|
*/
|
||
|
SUP_CERT("sup_cert", "首营资质"),
|
||
|
;
|
||
|
@EnumValue
|
||
|
private String key;
|
||
|
|
||
|
private String remark;
|
||
|
}
|