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 querySalesSystemFormatList(Map params); void writebackSalesDet(NewSystemFormatEntiy bean); /** * 根据key,查询value */ String querySalesByKey(String paramKey); NewSystemFormatEntiy queryMerch(String merchSn); List querySalesAgain(Map params); }