parent
b5491feb4e
commit
e842381c02
13 changed files with 438 additions and 408 deletions
@ -0,0 +1,134 @@ |
|||||||
|
/** |
||||||
|
* Author: Tom Shuo |
||||||
|
*/ |
||||||
|
package org.springblade.desk.basic.excel; |
||||||
|
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||||
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serial; |
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* [班组] Excel实体类 |
||||||
|
* |
||||||
|
* @author Tom Shuo |
||||||
|
* @since 2025-12-16 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class TeamSetImportExcel implements Serializable { |
||||||
|
|
||||||
|
@Serial |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("编码") |
||||||
|
private String tsCode; |
||||||
|
/** |
||||||
|
* 名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("名称") |
||||||
|
private String tsName; |
||||||
|
/** |
||||||
|
* 调度员 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("调度员") |
||||||
|
// private Long dispatcher;
|
||||||
|
private String dispatcherName; |
||||||
|
/** |
||||||
|
* 班组长;外键(人员) |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("班组长;外键(人员)") |
||||||
|
// private Long teamLeader;
|
||||||
|
private String teamLeaderName; |
||||||
|
/** |
||||||
|
* 班次;外键(班次) |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("班次;外键(班次)") |
||||||
|
// private Long csId;
|
||||||
|
private String csName; |
||||||
|
/** |
||||||
|
* 日分派时间 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("日分派时间") |
||||||
|
private String dayPutDueTime; |
||||||
|
/** |
||||||
|
* 创建人;外键(人员) |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("创建人;外键(人员)") |
||||||
|
// private Long createMan;
|
||||||
|
private String createManName; |
||||||
|
/** |
||||||
|
* 删除标记;1:删除,0:正常 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("删除标记;1:删除,0:正常") |
||||||
|
private String deleted; |
||||||
|
/** |
||||||
|
* 作业中心 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("作业中心") |
||||||
|
// private Long wcId;
|
||||||
|
private String wcName; |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("") |
||||||
|
private String special; |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("计划员") |
||||||
|
// private Long planner;
|
||||||
|
private String plannerName; |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("") |
||||||
|
private String teamMember; |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("") |
||||||
|
private String specDayPutDueTime; |
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("") |
||||||
|
private String exChangeTime; |
||||||
|
/** |
||||||
|
* 类型;1、针孔,2、壳体,3、烧结,4、园区,5、外协 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("类型;1、针孔,2、壳体,3、烧结,4、园区,5、外协") |
||||||
|
private String tsType; |
||||||
|
/** |
||||||
|
* 备注 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("备注") |
||||||
|
private String remark; |
||||||
|
} |
||||||
Loading…
Reference in new issue