mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
tiles * 일때 기능 없앰
This commit is contained in:
19
src/main/java/com/no1/wms/account/AccountMapper.java
Normal file
19
src/main/java/com/no1/wms/account/AccountMapper.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.no1.wms.account;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Repository
|
||||
@Mapper
|
||||
public interface AccountMapper {
|
||||
|
||||
int insert(AccountDto dto);
|
||||
int update(AccountDto dto);
|
||||
|
||||
int selectById(AccountDto dto);
|
||||
|
||||
List<AccountDto> selectAll(Map<String, Object> m);
|
||||
}
|
||||
Reference in New Issue
Block a user