啊鑫
6 天以前 1f963e2344833ff02087c05411b112147492bd00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gs.xky.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gs.xky.entity.MesInvItemArn;
 
import java.util.List;
 
/**
 * @author 28567
 * @description 针对表【MES_INV_ITEM_ARN(物料入库主表)】的数据库操作Mapper
 * @createDate 2025-02-15 17:10:09
 * @Entity com.gs.xky.entity.MesInvItemArn
 */
public interface MesInvItemArnMapper extends BaseMapper<MesInvItemArn> {
 
    List<MesInvItemArn> selectItemArnMinus();
}