| | |
| | | */ |
| | | package org.springblade.modules.task.vo; |
| | | |
| | | import org.springblade.modules.task.entity.TaskEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.modules.task.entity.TaskEntity; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 任务表 视图实体类 |
| | |
| | | public class TaskVO extends TaskEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "用户id") |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty(value = "地址") |
| | | private String addressName; |
| | | |
| | | /** |
| | | * 社区编码 |
| | | */ |
| | | @ApiModelProperty(value = "社区编码") |
| | | private String communityCode; |
| | | |
| | | private String neiCode; |
| | | private String aoiCode; |
| | | private String regionCode; |
| | | private String realName; |
| | | private String phone; |
| | | private String streetCode; |
| | | private String streetName; |
| | | private String applyName; |
| | | private String communityName; |
| | | private String districtName; |
| | | private String placeName; |
| | | |
| | | @ApiModelProperty("开始时间") |
| | | private String startTime; |
| | | |
| | | @ApiModelProperty("结束时间") |
| | | private String endTime; |
| | | |
| | | /** |
| | | * 角色别名 |
| | | */ |
| | | private String roleName; |
| | | |
| | | private String nineType; |
| | | |
| | | private String frontType; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startTimes; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date reachTime; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date returnTime; |
| | | |
| | | @ApiModelProperty(value = "颜色") |
| | | private String color; |
| | | |
| | | @ApiModelProperty(value = "分类名称") |
| | | private String categoryName; |
| | | |
| | | |
| | | } |