|
@@ -7,7 +7,7 @@ import com.ruoyi.project.domain.ProjectStaffRecord;
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
|
-
|
|
|
|
|
|
|
+ @Excel(name = "编号")
|
|
|
private Long id;
|
|
private Long id;
|
|
|
@Excel(name = "员工工号")
|
|
@Excel(name = "员工工号")
|
|
|
private String jobNumber;
|
|
private String jobNumber;
|
|
@@ -17,12 +17,12 @@ public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
|
private Long deptId;
|
|
private Long deptId;
|
|
|
@Excel(name = "部门")
|
|
@Excel(name = "部门")
|
|
|
private String deptName;
|
|
private String deptName;
|
|
|
- @Excel(name = "打卡时间")
|
|
|
|
|
|
|
+ @Excel(name = "打卡时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
@Excel(name = "工时")
|
|
@Excel(name = "工时")
|
|
|
private Double duration;
|
|
private Double duration;
|
|
|
- @Excel(name = "打卡月份")
|
|
|
|
|
|
|
+ @Excel(name = "打卡月份", dateFormat = "MM")
|
|
|
@JsonFormat(pattern = "MM")
|
|
@JsonFormat(pattern = "MM")
|
|
|
private Date createMonth;
|
|
private Date createMonth;
|
|
|
@Excel(name = "项目编号")
|
|
@Excel(name = "项目编号")
|
|
@@ -37,7 +37,7 @@ public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
|
private Long examineId;
|
|
private Long examineId;
|
|
|
@Excel(name = "审核人员")
|
|
@Excel(name = "审核人员")
|
|
|
private String examineName;
|
|
private String examineName;
|
|
|
- @Excel(name = "审核时间")
|
|
|
|
|
|
|
+ @Excel(name = "审核时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date examineTime;
|
|
private Date examineTime;
|
|
|
private String annexUrl;
|
|
private String annexUrl;
|