开发导入模板功能
parent
9102a3691b
commit
ec1d8a2ff3
@ -0,0 +1,33 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description 数据库实例字段模型
|
||||||
|
* @author siliter.yuan
|
||||||
|
* @date 2020/04/16
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Api("数据库实例字段模型")
|
||||||
|
public class BasBeanFieldModel {
|
||||||
|
|
||||||
|
@ApiParam("表明")
|
||||||
|
private String tableName;
|
||||||
|
|
||||||
|
@ApiParam("字段英文名称")
|
||||||
|
private String fieldEnName;
|
||||||
|
|
||||||
|
@ApiParam("字段类型")
|
||||||
|
public String fieldType;
|
||||||
|
|
||||||
|
@ApiParam("字段描述")
|
||||||
|
private String fieldDesc;
|
||||||
|
|
||||||
|
@ApiParam("实例类名")
|
||||||
|
public String entityName;
|
||||||
|
|
||||||
|
@ApiParam("实例字段名称")
|
||||||
|
public String propertyName;
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.template.BasImportTemplateDetails;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 导入模板明细数据操作仓库
|
||||||
|
* @Reference :
|
||||||
|
* @Author : siliter.yuan
|
||||||
|
* @CreateDate : 2020-04-16 10:00
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface BasImportTemplateDetailsRepository extends BaseRepository<BasImportTemplateDetails, Long> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.template.BasImportTemplate;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 导入模板数据操作仓库
|
||||||
|
* @Reference :
|
||||||
|
* @Author : siliter.yuan
|
||||||
|
* @CreateDate : 2020-04-16 10:00
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface BasImportTemplateRepository extends BaseRepository<BasImportTemplate, Long> {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue