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;
|
}
|
}
|