李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.chinaztt.mes.production.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.chinaztt.mes.production.entity.JoinTypeTemplate;
import com.chinaztt.mes.production.mapper.JoinTypeTemplateMapper;
import com.chinaztt.mes.production.service.JoinTypeTemplateService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
/**
 * 人工模板和人工类型关联表
 *
 * @author cxf
 * @date 2021-02-05 13:18:41
 */
@Service
@AllArgsConstructor
@Transactional(rollbackFor = Exception.class)
public class JoinTypeTemplateServiceImpl extends ServiceImpl<JoinTypeTemplateMapper, JoinTypeTemplate> implements JoinTypeTemplateService {
 
}