| | |
| | | import com.ruoyi.system.query.TDataStatisticsQuery; |
| | | import com.ruoyi.system.vo.SalesVolumeVO; |
| | | import com.ruoyi.system.vo.TDataGeneratorVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author xiaochen |
| | | * @since 2024-08-27 |
| | | */ |
| | | @Mapper |
| | | public interface TDataGeneratorMapper extends BaseMapper<TDataGenerator> { |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | List<TDataGeneratorVO> pageList(@Param("query") TDataGeneratorQuery query, @Param("pageInfo")PageInfo<TDataGeneratorVO> pageInfo); |
| | | |
| | | /** |
| | | * 数据生成删除 |
| | | * @param shopId |
| | | */ |
| | | void deleteByShopId(@Param("shopId")Long shopId); |
| | | } |