mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-05 12:13:33 +09:00
26 lines
612 B
Java
26 lines
612 B
Java
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);
|
|
|
|
List<PriceDto> priceList3(Map<String, Object> m);
|
|
int count2(Map<String, Object> m);//카운터
|
|
|
|
PriceDto selectById(String id);
|
|
int updateById(PriceDto dto);
|
|
int deactivateById(String id);
|
|
|
|
}
|