zouyu
2023-11-15 54cce185f383849322d5cc309d2ee5d155d15915
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 {
 
}