| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.dao.business.dto.CasesImport; |
| | | import com.doumee.dao.business.dto.MemberImport; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.poi.ss.usermodel.PictureData; |
| | | |
| | | import java.util.Date; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 分类信息表Model定义 |
| | | * @author doumee |
| | |
| | | @ApiModelProperty("导入失败记录数") |
| | | @ExcelColumn(name="导入失败记录数",index=18 ,width=10) |
| | | private Integer errorNum; |
| | | @TableField(exist = false) |
| | | private List<Cases> caseList; |
| | | @TableField(exist = false) |
| | | private List<Member> memberList; |
| | | @TableField(exist = false) |
| | | private List<PictureData> pictureDataList; |
| | | |
| | | @ApiModelProperty(value = "最后操作人员;", example = "1") |
| | | @TableField(exist = false) |
| | | private String updateUserName; |
| | | @ApiModelProperty(value = "结束时间;", example = "1") |
| | | @TableField(exist = false) |
| | | private Date starttime; |
| | | @ApiModelProperty(value = "结束时间;", example = "1") |
| | | @TableField(exist = false) |
| | | private Date endtime; |
| | | @ApiModelProperty(value = "进行中已处理的数量;", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer ingNum; |
| | | } |