|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @Author: liurunyu | 
|---|
|  |  |  | * @Date: 2024/7/8 18:53 | 
|---|
|  |  |  | * @Description 取水口日取水量漏损量 | 
|---|
|  |  |  | * @Description 取水口日取水量或漏损量 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @TableName(value="rm_intake_amount_day", autoResultMap = true) | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | 
|---|
|  |  |  | @ToString | 
|---|
|  |  |  | @NoArgsConstructor | 
|---|
|  |  |  | @AllArgsConstructor | 
|---|
|  |  |  | @Schema(name = "取水口日取水量漏损量") | 
|---|
|  |  |  | @Schema(name = "取水口日取水量或漏损量") | 
|---|
|  |  |  | public class RmIntakeAmountDay implements BaseEntity { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final long serialVersionUID = 2024007081854001L; | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 日取水量(不包括漏损水量) | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
|---|
|  |  |  | public Double amount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 日取消费金额 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
|---|
|  |  |  | public Double money; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 日取水次数 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Integer times; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 累计日漏损水量 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
|---|
|  |  |  | public Double loss; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 最后计水量时控制器累计水量 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) | 
|---|
|  |  |  | public Double totalAmountLast; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|