|
|
@@ -7,7 +7,7 @@ import com.ruoyi.project.domain.ProjectStaffRecord;
|
|
|
import java.util.Date;
|
|
|
|
|
|
public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
|
- @Excel(name = "编号")
|
|
|
+ @Excel(name = "编号",width = 8)
|
|
|
private Long id;
|
|
|
@Excel(name = "员工工号")
|
|
|
private String jobNumber;
|
|
|
@@ -21,14 +21,14 @@ public class ProjectStaffRecordOut extends ProjectStaffRecord {
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date recordTime;
|
|
|
private Date createTime;
|
|
|
- @Excel(name = "初始工时")
|
|
|
+ @Excel(name = "初始工时",width = 8)
|
|
|
private Double initDuration;
|
|
|
- @Excel(name = "考勤")
|
|
|
+ @Excel(name = "考勤",width = 8)
|
|
|
private Double checkDuration;
|
|
|
- @Excel(name = "工时")
|
|
|
+ @Excel(name = "工时",width = 8)
|
|
|
private Double duration;
|
|
|
|
|
|
- @Excel(name = "打卡月份", dateFormat = "MM")
|
|
|
+ @Excel(name = "打卡月份", dateFormat = "MM",width = 8)
|
|
|
@JsonFormat(pattern = "MM")
|
|
|
private Date createMonth;
|
|
|
@Excel(name = "项目编号")
|