package com.mes.md.service.impl;
|
|
import com.github.yulichang.base.MPJBaseServiceImpl;
|
import com.mes.md.entity.Line;
|
import com.mes.md.mapper.LineMapper;
|
import com.mes.md.service.LineService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author wu
|
* @since 2024-08-28
|
*/
|
@Service
|
public class LineServiceImpl extends MPJBaseServiceImpl<LineMapper, Line> implements LineService {
|
|
}
|