Administrator
2025-04-23 595b7935a30e84fba1bc3561d05f9d19d3e32e1f
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
package com.taoke.autopay.vo;
 
/**
 * @author hxh
 * @title: WxUserOrderSettingVO
 * @description: TODO
 * @date 2024/6/29 13:35
 */
 
public class WxUserOrderSettingVO{
    private Long id;
    private int dyPayCount;
    private int ksPayCount;
    private int totalSubmitCount;
 
    public WxUserOrderSettingVO() {
 
    }
 
    public WxUserOrderSettingVO(int dyPayCount, int ksPayCount, int totalSubmitCount) {
        this.dyPayCount = dyPayCount;
        this.ksPayCount = ksPayCount;
        this.totalSubmitCount = totalSubmitCount;
    }
 
    public int getDyPayCount() {
        return dyPayCount;
    }
 
    public void setDyPayCount(int dyPayCount) {
        this.dyPayCount = dyPayCount;
    }
 
    public int getKsPayCount() {
        return ksPayCount;
    }
 
    public void setKsPayCount(int ksPayCount) {
        this.ksPayCount = ksPayCount;
    }
 
    public int getTotalSubmitCount() {
        return totalSubmitCount;
    }
 
    public void setTotalSubmitCount(int totalSubmitCount) {
        this.totalSubmitCount = totalSubmitCount;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
}