| package com.panzhihua.common.model.dtos.common; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * 新增志愿者组织队伍表请求参数 | 
|  * | 
|  * @author lyq | 
|  * @since 2021-10-30 16:04:49 | 
|  */ | 
| @Data | 
| @ApiModel("新增志愿者组织队伍表请求参数") | 
| public class AddComMngVolunteerOrgTeamDto { | 
|   | 
|     private Long id; | 
|   | 
|     /** | 
|      * 社区id | 
|      */ | 
|     @ApiModelProperty(value = "社区id") | 
|     private Long communityId; | 
|   | 
|     /** | 
|      * 名称 | 
|      */ | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
|     /** | 
|      * 父级id,为0时则为组织,不为0则为队伍 | 
|      */ | 
|     @ApiModelProperty(value = "父级id,为0时则为组织,不为0则为队伍") | 
|     private Long parentId; | 
|   | 
|     /** | 
|      * 服务类型 | 
|      */ | 
|     @ApiModelProperty(value = "服务类型") | 
|     private Long serviceTypeId; | 
|   | 
|     /** | 
|      * 创建时间 | 
|      */ | 
|     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
|     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
|     @ApiModelProperty(value = "创建时间") | 
|     private Date createAt; | 
|   | 
|     /** | 
|      * 修改时间 | 
|      */ | 
|     @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
|     @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss") | 
|     @ApiModelProperty(value = "修改时间") | 
|     private Date updateAt; | 
|   | 
|   | 
|   | 
|   | 
| } |