12345678910111213141516171819 |
- package com.ozs.pm.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ozs.pm.doman.PmDemandEngineering;
- /**
- * 采购需求工程类Service接口
- *
- * @author ruoyi
- * @date 2023-01-16
- */
- public interface IPmDemandEngineeringService extends IService<PmDemandEngineering>
- {
- }
|