yum格式
2024/5/28...小于 1 分钟
ym格式文件
Java与数组的映射
@Component
@ConfigurationProperties(prefix = "scale")
@Data
public class ScaleNumConfig {
private Long companyId;
/**
* 字段对应关系
*/
private List<Target> targetList;
}
@Data
public class Target implements Serializable {
private static final long serialVersionUID = -7844134225473871124L;
/**
* 处理的策略
*/
private String strategy;
/**
* 标志当前商品名称
*/
private String productName;
/**
* 时序库的 key 字段名称
*/
private String targetKey;
/**
* wms 商品 ID
*/
private Long productId;
/**
* 该指标操作的阈值,超过阈值才有效数据
*/
private BigDecimal threshold;
}