package com.mes.md.service.impl;
|
|
import com.github.yulichang.base.MPJBaseServiceImpl;
|
import com.mes.md.entity.ProjectLog;
|
import com.mes.md.mapper.ProjectLogMapper;
|
import com.mes.md.service.ProjectLogService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 工程表操作记录明细 服务实现类
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
@Service
|
public class ProjectLogServiceImpl extends MPJBaseServiceImpl<ProjectLogMapper, ProjectLog> implements ProjectLogService {
|
|
}
|