123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.kmall.admin.service.alarm;
- import com.kmall.admin.entity.alarm.Mall2LowPriceWarningEntity;
- import java.util.List;
- import java.util.Map;
- /**
- * 价格过低预警表Service接口
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-06-23 11:40:02
- */
- public interface Mall2LowPriceWarningService {
- /**
- * 根据主键查询实体
- *
- * @param id 主键
- * @return 实体
- */
- Mall2LowPriceWarningEntity queryObject(Integer mlrwId);
- /**
- * 分页查询
- *
- * @param map 参数
- * @return list
- */
- List<Mall2LowPriceWarningEntity> queryList(Map<String, Object> map);
- /**
- * 分页统计总数
- *
- * @param map 参数
- * @return 总数
- */
- int queryTotal(Map<String, Object> map);
- /**
- * 保存实体
- *
- * @param mall2LowPriceWarning 实体
- * @return 保存条数
- */
- int save(Mall2LowPriceWarningEntity mall2LowPriceWarning);
- /**
- * 根据主键更新实体
- *
- * @param mall2LowPriceWarning 实体
- * @return 更新条数
- */
- int update(Mall2LowPriceWarningEntity mall2LowPriceWarning);
- /**
- * 根据主键删除
- *
- * @param mlrwId
- * @return 删除条数
- */
- int delete(Integer mlrwId);
- /**
- * 根据主键批量删除
- *
- * @param mlrwIds
- * @return 删除条数
- */
- int deleteBatch(Integer[] mlrwIds);
- }
|