All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baomidou.mybatisplus.generator.config.PackageConfig Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
/**
 * Copyright (c) 2011-2020, hubin ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.baomidou.mybatisplus.generator.config; import com.baomidou.mybatisplus.toolkit.StringUtils; /** *

* 跟包相关的配置项 * * @author YangHu, tangguo, hubin * @since 2016-08-30 */ public class PackageConfig { /** * 父包名。如果为空,将下面子包名必须写全部, 否则就只需写子包名 */ private String parent = "com.baomidou"; /** * 父包模块名。 */ private String moduleName = null; /** * Entity包名 */ private String entity = "entity"; /** * Service包名 */ private String service = "service"; /** * Service Impl包名 */ private String serviceImpl = "service.impl"; /** * Mapper包名 */ private String mapper = "mapper"; /** * Mapper XML包名 */ private String xml = "mapper.xml"; /** * Controller包名 */ private String controller = "web"; public String getParent() { if (StringUtils.isNotEmpty(moduleName)) { return parent + "." + moduleName; } return parent; } public PackageConfig setParent(String parent) { this.parent = parent; return this; } public String getModuleName() { return moduleName; } public PackageConfig setModuleName(String moduleName) { this.moduleName = moduleName; return this; } public String getEntity() { return entity; } public PackageConfig setEntity(String entity) { this.entity = entity; return this; } public String getService() { return service; } public PackageConfig setService(String service) { this.service = service; return this; } public String getServiceImpl() { return serviceImpl; } public PackageConfig setServiceImpl(String serviceImpl) { this.serviceImpl = serviceImpl; return this; } public String getMapper() { return mapper; } public PackageConfig setMapper(String mapper) { this.mapper = mapper; return this; } public String getXml() { return xml; } public PackageConfig setXml(String xml) { this.xml = xml; return this; } public String getController() { if (StringUtils.isEmpty(controller)) { return "web"; } return controller; } public PackageConfig setController(String controller) { this.controller = controller; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy