/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.springblade.modules.task.vo;
|
|
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;
|
|
/**
|
* 任务表 视图实体类
|
*
|
* @author BladeX
|
* @since 2023-11-06
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
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;
|
|
|
}
|