guns-management/src/main/java/com/stylefeng/guns/modular/system/service/impl/HouseTypeServiceImpl.java
@@ -6,10 +6,16 @@ import com.stylefeng.guns.modular.system.service.IHouseTypeService; import org.springframework.stereotype.Service; import java.util.List; /** * @author zhibing.pu * @Date 2023/11/14 14:45 */ @Service public class HouseTypeServiceImpl extends ServiceImpl<HouseTypeMapper, HouseType> implements IHouseTypeService { @Override public List<HouseType> list() { return this.baseMapper.list(); } }