|
|
@ -84,4 +84,9 @@ public class SysDictServiceImpl implements SysDictService { |
|
|
|
entity.setLastUpdateTime(new Date()); |
|
|
|
entity.setLastUpdateTime(new Date()); |
|
|
|
sysDictMapper.updateById(entity); |
|
|
|
sysDictMapper.updateById(entity); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public List<SysDict> findByType(String type) { |
|
|
|
|
|
|
|
return sysDictMapper.selectList(new QueryWrapper<SysDict>().eq("type", type)); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|