zhubaomin
2025-04-02 bab406b3393a3df6854ee5970a5a62a33f34e597
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
package com.dy.pipIrrGlobal.voSe;
 
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2024-01-26 18:52
 * @LastEditTime 2024-01-26 18:52
 * @Description 应用程序中使用,查询条件为:农户编号、农户姓名、水卡编号
 */
 
@Data
@Schema(title = "农户卡视图对象")
public class VoCards implements BaseEntity {
    private static final long serialVersionUID = 202401261853001L;
 
    @Schema(title = "农户编号")
    private String clientNum;
 
    @Schema(title = "农户姓名")
    private String clientName;
 
    @Schema(title = "水卡编号")
    private String cardNum;
 
    @Schema(title = "电话号码")
    private String phone;
 
    @Schema(title = "身份证号码")
    private String idCard;
 
    @Schema(title = "水卡状态")
    private Integer cardState;
 
    @Schema(title = "水卡状态名称")
    private String stateName;
 
    @Schema(title = "水卡类型")
    private String cardType;
 
    @Schema(title = "余额")
    private String money;
}