Administrator
2023-12-27 6b90436a61338d46282bf724e445e90af80461e1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.dy.pipIrrGlobal.voSe;
 
import com.dy.common.po.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2023-12-26 20:44
 * @LastEditTime 2023-12-26 20:44
 * @Description
 */
 
@Data
@Schema(title = "操作记录视图对象")
public class VoOperate implements BaseEntity {
    private static final long serialVersionUID = 1L;
 
    @Schema(title = "村ID")
    private Long villageId;
 
    @Schema(title = "区划名称串")
    private String districtTitle;
 
    @Schema(title = "农户编号")
    private String clientNum;
 
    @Schema(title = "农户姓名")
    private String name;
 
    @Schema(title = "水卡编号")
    private Long cardNum;
 
    @Schema(title = "身份证号")
    private String idCard;
 
    @Schema(title = "手机号")
    private String phone;
 
    @Schema(title = "充值金额")
    private Float money;
 
    @Schema(title = "购卡金额")
    private Integer cardCost;
 
    @Schema(title = "支付方式编号")
    private Long paymentId;
 
    @Schema(title = "支付方式名称")
    private String paymentMethod;
 
    @Schema(title = "业务类型")
    private String operateType;
 
    @Schema(title = "交易时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date operateDt;
 
    @Schema(title = "操作员")
    private String operatorName;
}