feat(入库计划明细实例): 新增 根据入库计划明细ID删除、批量插入入库计划明细实例
This commit is contained in:
parent
50f96b0bdd
commit
1b79b79082
@ -65,4 +65,19 @@ public interface WmsInPlanDetailEntityMapper
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsInPlanDetailEntityByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除入库计划明细实体 根据入库计划明细ID
|
||||
*
|
||||
* @param id 入库计划明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteWmsInPlanDetailEntityByPlanDetailsId(Long id);
|
||||
|
||||
/**
|
||||
* 批量插入入库计划明细实例
|
||||
* @param wmsInPlanDetailEntityList 入库计划明细实例集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchWmsInPlanDetailEntity(List<WmsInPlanDetailEntity> wmsInPlanDetailEntityList);
|
||||
}
|
||||
|
@ -113,6 +113,12 @@
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<delete id="deleteWmsInPlanDetailEntityByPlanDetailsId" parameterType="Long">
|
||||
delete
|
||||
from WMS_IN_PLAN_DETAIL_ENTITY
|
||||
where PLAN_DETAILS_ID = #{PlanDetailsId}
|
||||
</delete>
|
||||
|
||||
<!--批量插入-->
|
||||
<insert id="batchWmsInPlanDetailEntity">
|
||||
insert into WMS_IN_PLAN_DETAIL_ENTITY(
|
||||
|
Loading…
Reference in New Issue
Block a user