| | |
| | | package com.consum.base.service; |
| | | |
| | | import com.consum.model.po.BaseGoodsModels; |
| | | import com.consum.model.po.S_dict_data; |
| | | import com.consum.model.po.SDictData; |
| | | import com.walker.jdbc.service.BaseServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.util.CollectionUtils; |
| | |
| | | * @Author 卢庆阳 |
| | | * @Date 2023/11/2 |
| | | */ |
| | | public List<S_dict_data> selectByScrappedCodeList(List<String> scrappedCodeList) { |
| | | public List<SDictData> selectByScrappedCodeList(List<String> scrappedCodeList) { |
| | | if (CollectionUtils.isEmpty(scrappedCodeList)) { |
| | | log.error("参数错误"); |
| | | return null; |
| | |
| | | } |
| | | sql.append(" ) "); |
| | | |
| | | return this.select(sql.toString(), paramts, new S_dict_data()); |
| | | return this.select(sql.toString(), paramts, new SDictData()); |
| | | } |
| | | } |