linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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
package org.springblade.modules.house.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * HouseExcel
 *
 * @author Chill
 */
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class UserHouseLabelExcel implements Serializable {
 
    private static final long serialVersionUID = 2L;
 
 
    /** 门牌地址编码 */
    @ExcelProperty( "门牌地址编码")
    private String houseCode;
 
    /** 标签ID */
    @ExcelProperty( "标签ID")
    private Long labelId;
 
    /** 标签名称 */
    @ExcelProperty( "标签名称")
    private String labelName;
 
    /** 颜色 */
    @ExcelProperty( "颜色")
    private String color;
 
    /** 备注 */
    @ExcelProperty( "备注")
    private String remark;
 
    /** 用户id */
    @ExcelProperty( "用户id")
    private Long userId;
 
//    /** 标签类型:1:人:2房屋 */
//    @ExcelProperty( "标签类型:1:人:2房屋")
//    private Integer lableType;
 
    /** 住户id */
    @ExcelProperty( "住户id")
    private Integer householdId;
 
 
 
 
}