解决excel导入商品遇到的条码重复的问题

This commit is contained in:
jishenghua
2024-12-08 00:44:02 +08:00
parent e49b8e05d4
commit f41dbb34e1
5 changed files with 45 additions and 16 deletions

View File

@@ -75,4 +75,10 @@
where id = #{id,jdbcType=BIGINT}
and ifnull(delete_flag,'0') !='1'
</update>
<select id="getBasicInfoByMid" resultType="com.jsh.erp.datasource.entities.MaterialExtend">
select * from jsh_material_extend
where material_id=#{materialId} and default_flag='1'
and ifnull(delete_Flag,'0') !='1'
</select>
</mapper>