package com.gs.xky.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gs.xky.entity.MesRohIn;
|
|
/**
|
* @author 28567
|
* @description 针对表【MES_ROH_IN(采购订单表)】的数据库操作Mapper
|
* @createDate 2025-05-26 15:39:01
|
* @Entity com.gs.xky.entity.MesRohIn
|
*/
|
public interface MesRohInMapper extends BaseMapper<MesRohIn> {
|
|
}
|