| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -18,6 +18,7 @@ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					package com.epmet.dto.form; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					import lombok.Data; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					import org.hibernate.validator.constraints.Length; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					import javax.validation.constraints.NotBlank; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					import javax.validation.constraints.NotNull; | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -44,6 +45,7 @@ public class AddAgencyFormDTO implements Serializable { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 机构组织名称 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "组织名称不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=50,message = "机构名称不能超过50个字") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String agencyName; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    /** | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -54,30 +56,35 @@ public class AddAgencyFormDTO implements Serializable { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 省级:province) 机关级别(社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province) | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "机关级别不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=30,message = "机关类别不能超过30个字") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String level; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    /** | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 地区编码 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "地区编码不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=10,message = "地区编码不能超过10位") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String areaCode; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    /** | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 省份 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "省级名称不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=30,message = "省份名称不能超过30个字") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String province; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    /** | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 城市 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "市级名称不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=30,message = "市级名称不能超过30个字") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String city; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    /** | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     * 区县 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					     */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @NotBlank(message = "区县名称不能为空") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    @Length(max=30,message = "区县名称不能超过30个字") | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					    private String district; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					} |