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.
|
|
|
package com.glxp.api.constant;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.EnumValue;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
import lombok.Getter;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* task最后执行时间key
|
|
|
|
*/
|
|
|
|
@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", "首营资质"),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UDI码补齐
|
|
|
|
*/
|
|
|
|
IO_CODE_LOST("io_code_lost", "UDI码补齐"),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UDI码关联关系
|
|
|
|
*/
|
|
|
|
IO_CODE_REL("io_code_rel", "UDI码关联关系"),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 业务单据类型
|
|
|
|
*/
|
|
|
|
BASIC_BUSSINESS_TYPE("basic_bussiness_type","扫码单据类型"),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 扫码单据类型
|
|
|
|
*/
|
|
|
|
BASIC_BUSTYPE_CHANGE("basic_bustype_change","业务单据类型"),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 业务单据类型
|
|
|
|
*/
|
|
|
|
THR_BUSTYPE_ORIGIN("thr_bustype_origin","第三方单据类型"),
|
|
|
|
;
|
|
|
|
@EnumValue
|
|
|
|
private String key;
|
|
|
|
|
|
|
|
private String remark;
|
|
|
|
}
|