李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.chinaztt.mes.quality.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.chinaztt.mes.quality.entity.BasicCustomerPartRelationMap;
import com.chinaztt.mes.quality.mapper.BasicCustomerPartRelationMapMapper;
import com.chinaztt.mes.quality.service.BasicCustomerPartRelationMapService;
import org.springframework.stereotype.Service;
 
/**
 * 零件与客户物料码映射关系表
 *
 * @author pigx code generator
 * @date 2022-12-02 14:01:00
 */
@Service
public class BasicCustomerPartRelationMapServiceImpl extends ServiceImpl<BasicCustomerPartRelationMapMapper, BasicCustomerPartRelationMap> implements BasicCustomerPartRelationMapService {
 
}