许鹏程
2025-02-17 99c693af3da1391d00872f89ebd18fcc85278200
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
package com.product.face.entity;
 
import java.io.Serializable;
 
/**
 * @Author cheng
 * @Date 2023/5/17 10:13
 * @Desc 表格列
 */
public class TableColumn implements Serializable {
 
    private static final long serialVersionUID = -2568367952209207590L;
    /**
     * 列绑定字段名
     */
    private String field;
    /**
     * 列标题
     */
    private String title;
    /**
     * 列宽度
     */
    private String columnWidth;
 
    public String getField() {
        return field;
    }
 
    public void setField(String field) {
        this.field = field;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getColumnWidth() {
        return columnWidth;
    }
 
    public void setColumnWidth(String columnWidth) {
        this.columnWidth = columnWidth;
    }
}