18 lines
493 B
Java
18 lines
493 B
Java
package com.interplug.qcast.biz.user;
|
|
|
|
import com.interplug.qcast.biz.user.dto.StoreRequest;
|
|
import com.interplug.qcast.biz.user.dto.UserRequest;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface UserMapper {
|
|
|
|
int setStoreSave(StoreRequest storeReq) throws Exception;
|
|
|
|
int setStoreSapCdSave(StoreRequest storeReq) throws Exception;
|
|
|
|
int setStoreNorthModuleSave(StoreRequest storeReq) throws Exception;
|
|
|
|
int setUserSave(UserRequest userReqList) throws Exception;
|
|
}
|