kaiyu
2021-05-12 8f9f72a3f92de3a1a5f2faf1eaff583fbe6e70fb
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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;
}