hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
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.ruoyi.collaborativeApproval.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
public class BroadbandCommunicationDTO {
 
    private Long id;
 
    private String area;
 
    private String office;
 
    private String residentStaff;
 
    private String address;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate installDate;
 
    private BigDecimal installFee;
 
    private Integer paymentCycle;
 
    private String paymentMethod;
 
    private BigDecimal prepaidAmount;
 
    private BigDecimal monthlyFee;
 
    private String packageContent;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate nextPaymentDate;
 
    /**
     * normal: 正常 (>15天)
     * expiring: 即将到期 (0~15天)
     * overdue: 已逾期 (<0天)
     */
    private String warnStatus;
}