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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.collaborativeApproval.pojo;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
@TableName("broadband_communication")
public class BroadbandCommunication {
 
    @TableId(type = IdType.AUTO)
    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;
 
    private String delFlag;
 
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
 
    @TableField(fill = FieldFill.INSERT)
    private Integer tenantId;
 
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}