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 {
|
}
|