src/main/java/com/yssh/service/IDictRecordService.java
@@ -14,21 +14,31 @@ /** * 查询字典记录列表 * * @param dictRecord 字典记录 * @return 字典记录集合 */ public List<DictRecord> selectDictRecordList(DictRecord dictRecord); /** * 根据创建时间查询 * * @param createTime * @return */ public DictRecord selectByCreateTime(Long createTime); /** * 新增字典记录 * * @param dictRecord 字典记录 * @return 结果 */ public int insertDictRecord(DictRecord dictRecord); /** * 批量删除字典记录 * * @param ids 需要删除的数据ID * @return 结果 */ @@ -36,6 +46,7 @@ /** * 删除字典记录信息 * * @param id 字典记录ID * @return 结果 */ @@ -45,5 +56,4 @@ * 创建字典记录信息表 */ int createDictRecoTable(); }