优化企标导入功能
This commit is contained in:
@@ -85,4 +85,7 @@ public interface DicTypeEODao extends BaseMapper<DicTypeEO> {
|
||||
*/
|
||||
public List<DicTypeEO> getDicInfo(@Param("filed") String... filed);
|
||||
|
||||
String selectByPid(@Param("Info") String Info);
|
||||
|
||||
List<DicTypeEO> selectByPidInfo(@Param("pid") String pid);
|
||||
}
|
||||
|
||||
@@ -614,4 +614,21 @@
|
||||
|
||||
</select>
|
||||
|
||||
<select id="selectByPid" resultType="java.lang.String">
|
||||
SELECT
|
||||
ID
|
||||
FROM
|
||||
ts_dictionary
|
||||
WHERE
|
||||
DICTIONARY_NAME = #{Info}
|
||||
</select>
|
||||
|
||||
<select id="selectByPidInfo" resultType="com.adc.da.sys.entity.DicTypeEO">
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
ts_dictype
|
||||
WHERE
|
||||
DIC_ID = #{pid}
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user