|
|
|
@ -4,14 +4,14 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -117,4 +117,9 @@ public class BasImportTemplateDetails extends BaseBean{
|
|
|
|
|
@Column(name="SHEET_NAME")
|
|
|
|
|
@ApiParam("工作薄名称")
|
|
|
|
|
private String sheetName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_EXPORT_TITLE")
|
|
|
|
|
@ApiParam("是否导出表头")
|
|
|
|
|
private Integer isExportTitle;
|
|
|
|
|
}
|