12345678910111213141516171819202122232425 |
- package com.kmall.admin.dao;
- import com.kmall.admin.dto.NewSystemFormatEntiy;
- import org.springframework.stereotype.Component;
- import java.util.List;
- import java.util.Map;
- @Component
- public interface SalesDetailMapper {
- List<NewSystemFormatEntiy> querySalesSystemFormatList(Map<String, Object> params);
- void writebackSalesDet(NewSystemFormatEntiy bean);
- /**
- * 根据key,查询value
- */
- String querySalesByKey(String paramKey);
- NewSystemFormatEntiy queryMerch(String merchSn);
- List<NewSystemFormatEntiy> querySalesAgain(Map<String, Object> params);
- }
|