mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
update Categorys and Products and add Prices
This commit is contained in:
17
src/main/java/com/no1/wms/price/PriceMapper.java
Normal file
17
src/main/java/com/no1/wms/price/PriceMapper.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.no1.wms.price;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import com.no1.wms.category.CategoryDto;
|
||||
|
||||
@Mapper
|
||||
public interface PriceMapper {
|
||||
|
||||
List<PriceDto> priceList(Map<String, Object> m);
|
||||
int count(Map<String, Object> m);//카운터
|
||||
List<PriceDto> priceList2(Map<String, Object> m);//검색기능까지 포함
|
||||
int createProcess(PriceDto dto);
|
||||
}
|
||||
Reference in New Issue
Block a user