| | |
| | | package com.gkhy.system.domain.vo.request; |
| | | |
| | | public class ProjectExpertTeamLeaderReqDto { |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | @ApiModel(value = "项目专家关联对象设置组长操作", description = "项目专家关联对象设置组长操作") |
| | | @Data |
| | | public class ProjectExpertTeamLeaderReqDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | @ApiModelProperty(value = "id",required = true) |
| | | @NotNull |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(name = "是否组长0否1是",required = true) |
| | | @NotNull(message = "是否组长不能为空") |
| | | private Long teamLeader; |
| | | } |