update Categorys and Products and add Prices

This commit is contained in:
Kana
2024-01-12 09:53:33 +09:00
parent 660e581391
commit 735cf868cd
16 changed files with 721 additions and 123 deletions

View 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);
}