cuijian
2025-05-15 6b5f508bcd94d3f3d6484075c69d918fae226788
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.tms.service.impl;
 
import org.jeecg.modules.tms.entity.ToolsConfigProperty;
import org.jeecg.modules.tms.mapper.ToolsConfigPropertyMapper;
import org.jeecg.modules.tms.service.IToolsConfigPropertyService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * @Description: tms_tools_config_property
 * @Author: jeecg-boot
 * @Date:   2025-05-13
 * @Version: V1.0
 */
@Service
public class ToolsConfigPropertyServiceImpl extends ServiceImpl<ToolsConfigPropertyMapper, ToolsConfigProperty> implements IToolsConfigPropertyService {
 
}