|
|
|
@ -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;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.List;
|
|
|
|
@ -72,6 +72,10 @@ public class BasImportTemplate extends BaseBean{
|
|
|
|
|
@ApiParam(value = "起始行", example = "0")
|
|
|
|
|
private Integer startRow;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REMARK")
|
|
|
|
|
@ApiParam(value = "备注")
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("模板明细列表")
|
|
|
|
|
private List<BasImportTemplateDetails> templateDetailsList;
|
|
|
|
|