|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @Author: liurunyu | 
|---|
|  |  |  | * @Date: 2024/7/24 17:03 | 
|---|
|  |  |  | * @Date: 2024/12/30 9:21 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @Schema(name = "农户用水量及费用年统计") | 
|---|
|  |  |  | public class StClientAmountYear implements BaseEntity { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static final long serialVersionUID = 202407241705002L; | 
|---|
|  |  |  | public static final long serialVersionUID = 202412300922001L; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 主键 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | 
|---|
|  |  |  | public Long id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 农户ID | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | * 农户ID | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "农户外键", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | @JSONField(serializeUsing= ObjectWriterImplToString.class) | 
|---|
|  |  |  | public Long clientId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 统计年度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "统计年度", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | * 年度 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Integer year; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 年用水量 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "年用水量(m3)", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | * 年用水量统计 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double amount; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 年费用 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Schema(description = "年费用(元)", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
|---|
|  |  |  | * 年花费金额 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Double money; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 年用水次数 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public Integer times; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|