| | |
| | | package com.ruoyi.project.tool.gen.service;
|
| | |
|
| | | import java.util.List;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.stereotype.Service;
|
| | | import com.ruoyi.common.core.text.Convert;
|
| | | import com.ruoyi.project.tool.gen.domain.GenTableColumn;
|
| | | import com.ruoyi.project.tool.gen.mapper.GenTableColumnMapper;
|
| | | import lombok.RequiredArgsConstructor;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 业务字段 服务层实现
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @Service
|
| | | @RequiredArgsConstructor
|
| | | public class GenTableColumnServiceImpl implements IGenTableColumnService
|
| | | {
|
| | | @Autowired
|
| | | private GenTableColumnMapper genTableColumnMapper;
|
| | | private final GenTableColumnMapper genTableColumnMapper;
|
| | |
|
| | | /**
|
| | | * 查询业务字段列表
|