| | |
| | | @Excel(name = "任务ID") |
| | | private String taskId; |
| | | |
| | | /** |
| | | * 状态(0未完成 1已完成) |
| | | */ |
| | | @Excel(name = "状态", readConverterExp = "0=未完成,1=已完成") |
| | | private String status; |
| | | |
| | | /** 打卡图片url */ |
| | | @Excel(name = "打卡图片url") |
| | | private String clockInPicUrl; |
| | | |
| | | /** app任务详情图片信息 */ |
| | | private List<ArdAppTaskDetailPic> ardAppTaskDetailPic; |
| | | |
| | | public String getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(String status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getClockInPicUrl() { |
| | | return clockInPicUrl; |
| | | } |
| | | |
| | | public void setClockInPicUrl(String clockInPicUrl) { |
| | | this.clockInPicUrl = clockInPicUrl; |
| | | } |
| | | |
| | | public List<ArdAppTaskDetailPic> getArdAppTaskDetailPic() { |
| | | return ardAppTaskDetailPic; |
| | | } |