| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | |
| | | * @Description 取水口漏损月统计 |
| | | */ |
| | | |
| | | @TableName(value="rm_loss_month", autoResultMap = true) |
| | | @TableName(value="st_loss_month", autoResultMap = true) |
| | | @Data |
| | | @Builder |
| | | @ToString |
| | |
| | | * 月统计 |
| | | */ |
| | | @Schema(description = "月漏损量(m3)", requiredMode = Schema.RequiredMode.NOT_REQUIRED) |
| | | @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" ) |
| | | public Double amount; |
| | | |
| | | } |