| | |
| | | package com.ruoyi.app.task.domain; |
| | | |
| | | import java.util.List; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | @Excel(name = "用户ID") |
| | | private String userId; |
| | | /** app任务图片信息 */ |
| | | @ApiModelProperty(notes = "app任务图片信息") |
| | | private List<ArdAppTaskPic> ardAppTaskPicList; |
| | | |
| | | /** app任务关联多用户 */ |
| | | private List<String> userIds; |
| | | |
| | | /** app任务详情信息 */ |
| | | @ApiModelProperty(notes = "app任务详情信息") |
| | | private List<ArdAppTaskDetail> ardAppTaskDetailList; |
| | | |
| | | public List<ArdAppTaskPic> getArdAppTaskPicList() |