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;
|
}
|