mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
account read update 관련
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
package com.no1.wms.account;
|
||||
|
||||
import com.no1.wms.authority.AuthorityDto;
|
||||
import com.no1.wms.department.DepartmentDto;
|
||||
import com.no1.wms.position.PositionDto;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@@ -11,9 +14,15 @@ import java.util.Map;
|
||||
public interface AccountMapper {
|
||||
|
||||
int insert(AccountDto dto);
|
||||
|
||||
int insertToAuthority(AuthorityDto dto);
|
||||
int update(AccountDto dto);
|
||||
|
||||
int selectById(AccountDto dto);
|
||||
AccountDto selectById(AccountDto dto);
|
||||
|
||||
List<AccountDto> selectAll(Map<String, Object> m);
|
||||
|
||||
List<DepartmentDto> selectDeptAll(Map<String, Object> m);
|
||||
|
||||
List<PositionDto> selectPosAll(Map<String, Object> m);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user