| | |
| | | |
| | | import com.yssh.entity.DictRecord; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | |
| | | /** |
| | | * 查询字典记录列表 |
| | | * |
| | | * @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 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除字典记录信息 |
| | | * |
| | | * @param id 字典记录ID |
| | | * @return 结果 |
| | | */ |