李林
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.technology.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.chinaztt.mes.technology.entity.DocumentJgt;
import com.chinaztt.mes.technology.mapper.DocumentJgtMapper;
import com.chinaztt.mes.technology.service.DocumentJgtService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
/**
 * 工艺文件结构图
 *
 * @author yy
 * @date 2022-11-14 15:08:17
 */
@Service
@AllArgsConstructor
@Transactional(rollbackFor = Exception.class)
public class DocumentJgtServiceImpl extends ServiceImpl<DocumentJgtMapper, DocumentJgt> implements DocumentJgtService {
}