1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.chinaztt.mes.quality.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.chinaztt.mes.quality.entity.BasicCustomerPartRelationMap;
|
| /**
| * 零件与客户物料码映射关系表
| *
| * @author pigx code generator
| * @date 2022-12-02 14:01:00
| */
| public interface BasicCustomerPartRelationMapService extends IService<BasicCustomerPartRelationMap> {
|
| }
|
|