forked from rongchao/epmet-cloud-rizhao
				
			
				 15 changed files with 256 additions and 7 deletions
			
			
		@ -0,0 +1,28 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import javax.validation.constraints.NotBlank; | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					import java.util.List; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Description 更新标签使用率入参DTO | 
				
			||||
 | 
					 * @ClassName TagDifferentSetFormDTO | 
				
			||||
 | 
					 * @Auth wangc | 
				
			||||
 | 
					 * @Date 2020-12-11 14:03 | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class TagDifferentSetFormDTO implements Serializable { | 
				
			||||
 | 
					    private static final long serialVersionUID = -5232943723252172322L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private List<String> plus; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    private List<String> minus; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    @NotBlank(message = "客户Id不能为空") | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    @NotBlank(message = "用户Id不能为空") | 
				
			||||
 | 
					    private String userId; | 
				
			||||
 | 
					} | 
				
			||||
@ -0,0 +1,43 @@ | 
				
			|||||
 | 
					package com.epmet.dto.form; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import com.epmet.dto.result.ProjectCategoryTagResultDTO; | 
				
			||||
 | 
					import lombok.Data; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					import javax.validation.constraints.NotBlank; | 
				
			||||
 | 
					import java.io.Serializable; | 
				
			||||
 | 
					import java.util.List; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					/** | 
				
			||||
 | 
					 * @Description 项目-标签-钩子入参 | 
				
			||||
 | 
					 * @ClassName ProjectTagHookFormDTO | 
				
			||||
 | 
					 * @Auth wangc | 
				
			||||
 | 
					 * @Date 2020-12-11 11:02 | 
				
			||||
 | 
					 */ | 
				
			||||
 | 
					@Data | 
				
			||||
 | 
					public class ProjectTagHookFormDTO implements Serializable { | 
				
			||||
 | 
					    private static final long serialVersionUID = 1432932825980640139L; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 项目Id | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message = "项目Id不能为空") | 
				
			||||
 | 
					    private String projectId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 标签列表  标签Id  标签Name | 
				
			||||
 | 
					     * 为空表示清除项目的标签信息 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    private List<ProjectCategoryTagResultDTO> tagList; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 客户Id,从token中获取 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message = "客户Id不能为空") | 
				
			||||
 | 
					    private String customerId; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					    /** | 
				
			||||
 | 
					     * 工作人员Id,从token中获取 | 
				
			||||
 | 
					     */ | 
				
			||||
 | 
					    @NotBlank(message = "工作人员Id不能为空") | 
				
			||||
 | 
					    private String staffId; | 
				
			||||
 | 
					} | 
				
			||||
					Loading…
					
					
				
		Reference in new issue