add(hwmom-mes):为 BaseClassTeamInfo 及其 VO 类添加班组负责人字段

- 在 BaseClassTeamInfo 和 BaseClassTeamInfoVo 类中添加 teamHeadName 字段,用于存储班组负责人的名称
- 为映射字段添加注释
master
zch 2 weeks ago
parent 9c5061d9d5
commit 269f418923

@ -72,18 +72,24 @@ public class BaseClassTeamInfo extends TenantEntity {
* BaseShiftInfo * BaseShiftInfo
*/ */
@TableField(exist = false) @TableField(exist = false)
private String shiftName; private String shiftName;//映射字段
/** /**
* ProdBaseStationInfo * ProdBaseStationInfo
*/ */
@TableField(exist = false) @TableField(exist = false)
private String stationName; private String stationName;//映射字段
/** /**
* ProdBaseProcessInfo * ProdBaseProcessInfo
*/ */
@TableField(exist = false) @TableField(exist = false)
private String processName; private String processName;//映射字段
/**
*
*/
@TableField(exist = false)
private String teamHeadName;//映射字段
} }

@ -116,23 +116,29 @@ public class BaseClassTeamInfoVo implements Serializable {
* *
*/ */
@ExcelProperty(value = "更新时间") @ExcelProperty(value = "更新时间")
private Date updateTime; private Date updateTime;//映射字段
/** /**
* *
*/ */
@ExcelProperty(value = "班次名称") @ExcelProperty(value = "班次名称")
private String shiftName; private String shiftName;//映射字段
/** /**
* *
*/ */
@ExcelProperty(value = "工位名称") @ExcelProperty(value = "工位名称")
private String stationName; private String stationName;//映射字段
/** /**
* *
*/ */
@ExcelProperty(value = "工序名称") @ExcelProperty(value = "工序名称")
private String processName; private String processName;//映射字段
/**
*
*/
@ExcelProperty(value = "班组负责人名称")
private String teamHeadName;//映射字段
} }

Loading…
Cancel
Save