houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.iailab.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2024年02月02日 17:00:00
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Schema(name = "电耗")
public class FeignPowerConsumeDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(name = "日期")
    private String rq;
 
    @Schema(name = "班次")
    private String bc;
 
    @Schema(name = "电耗系统")
    private String xt;
 
    /**
     * 内报当日量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal nbdrl;
 
    /**
     * 内报调整量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal nbtzl;
 
    /**
     * 外报当日量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal wbdrl;
 
    /**
     * 外报调整量
     */
    @JsonFormat(shape =JsonFormat.Shape.STRING)
    private BigDecimal wbtzl;
 
    /**
     * 备注
     */
    private String bz;
 
    @Schema(name = "创建人")
    private String cjr;
 
    @Schema(name = "创建时间")
    private Date cjsj;
 
    @Schema(name = "修改人")
    private String xgr;
 
    @Schema(name = "修改时间")
    private Date xgsj;
}