forked from luyan/epmet-cloud-lingshan
				
			
				 5 changed files with 91 additions and 1 deletions
			
			
		@ -0,0 +1,23 @@ | 
				
			|||
package com.epmet.dto.form; | 
				
			|||
 | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import javax.validation.constraints.NotBlank; | 
				
			|||
import java.io.Serializable; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Description 党员认证-待审核列表入参 | 
				
			|||
 * @Author yinzuomei | 
				
			|||
 * @Date 2020/4/26 15:59 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
public class AuditingPartyMemberFormDTO implements Serializable { | 
				
			|||
    private static final long serialVersionUID = 6022180109189321760L; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 网格ID | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "网格id不能为空") | 
				
			|||
    private String gridId; | 
				
			|||
} | 
				
			|||
 | 
				
			|||
@ -0,0 +1,20 @@ | 
				
			|||
package com.epmet.service; | 
				
			|||
 | 
				
			|||
import com.epmet.commons.tools.utils.Result; | 
				
			|||
import com.epmet.dto.form.AuditingPartyMemberFormDTO; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Description 基层治理-党员认证 | 
				
			|||
 * @Author yinzuomei | 
				
			|||
 * @Date 2020/4/26 16:02 | 
				
			|||
 */ | 
				
			|||
public interface ResiPartyMemberService { | 
				
			|||
    /** | 
				
			|||
     * @param formDTO | 
				
			|||
     * @return com.epmet.commons.tools.utils.Result | 
				
			|||
     * @Author yinzuomei | 
				
			|||
     * @Description 待审核列表 | 
				
			|||
     * @Date 2020/4/26 16:04 | 
				
			|||
     **/ | 
				
			|||
    Result auditing(AuditingPartyMemberFormDTO formDTO); | 
				
			|||
} | 
				
			|||
@ -0,0 +1,24 @@ | 
				
			|||
package com.epmet.service.impl; | 
				
			|||
 | 
				
			|||
import com.epmet.commons.tools.utils.Result; | 
				
			|||
import com.epmet.dto.form.AuditingPartyMemberFormDTO; | 
				
			|||
import com.epmet.service.ResiPartyMemberService; | 
				
			|||
import org.slf4j.Logger; | 
				
			|||
import org.slf4j.LoggerFactory; | 
				
			|||
import org.springframework.stereotype.Service; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Description 基层治理-党员认证 | 
				
			|||
 * @Author yinzuomei | 
				
			|||
 * @Date 2020/4/26 16:02 | 
				
			|||
 */ | 
				
			|||
@Service | 
				
			|||
public class ResiPartyMemberServiceImpl implements ResiPartyMemberService { | 
				
			|||
    protected final Logger logger = LoggerFactory.getLogger(getClass()); | 
				
			|||
 | 
				
			|||
    @Override | 
				
			|||
    public Result auditing(AuditingPartyMemberFormDTO formDTO) { | 
				
			|||
        return null; | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
 | 
				
			|||
					Loading…
					
					
				
		Reference in new issue