package com.moral.api.pojo.vo.unitConversion;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @ClassName UnitConversionVO
|
* @Description TODO
|
* @Author 陈凯裕
|
* @Date 2021/5/12 9:12
|
* @Version TODO
|
**/
|
@Data
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
public class UnitConversionVO {
|
|
private Integer id;
|
|
/**
|
* 原始单位字典Key
|
*/
|
private String originalUnitKey;
|
|
/*
|
* 原始单位名称
|
* */
|
private String originalUnitName;
|
|
/**
|
* 目标单位字典Key
|
*/
|
private String targetUnitKey;
|
|
/*
|
* 目标单位名称
|
* */
|
private String targetUnitName;
|
|
/**
|
* 转换公式
|
*/
|
private String formula;
|
|
/**
|
* 创建时间
|
*/
|
private String createTime;
|
|
/**
|
* 更新时间
|
*/
|
private String updateTime;
|
}
|