package itn.let.sym.grd.service; import java.util.List; public interface MberGrdService { // 등급제 설정 일괄변경 public int updateMberSetting(MberGrdVO mberGrdVO) throws Exception; // 등급제 시행여부 상세 public MberGrdVO selectMberSettingDetail(MberGrdVO mberGrdVO) throws Exception; // 등급제 설정 목록 List selectMberGrdSettingList(MberGrdVO mberGrdVO) throws Exception; // 등급제 설정 일괄변경 public int updateGrdSettingList(MberGrdVO mberGrdVO) throws Exception; // 회원별 등급 상세 public MberGrdVO selectMberGrdDetail(MberGrdVO mberGrdVO) throws Exception; // 회원별 등급 등록 public void insertMberGrd(MberGrdVO mberGrdVO) throws Exception; // 회원별 등급 수정 public void updateMberGrd(MberGrdVO mberGrdVO) throws Exception; // 회원별 등급 진행여부 int selectMberGrdPrgCnt(String userId) throws Exception; // 회원별 등급 히스토리 등록 public void insertMberGrdHist(MberGrdVO mberGrdVO) throws Exception ; }