| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 | 
							- package com.miniframe.model.system;
 
- import com.miniframe.system.MiniserviceBaseModel;
 
- import java.io.Serializable;
 
- import javax.persistence.*;
 
- @Table(name = "adi_modeling")
 
- public class AdiModeling extends MiniserviceBaseModel implements Serializable {
 
-     /**
 
-      * 项目建模信息
 
-      */
 
-     @Id
 
-     private String id;
 
-     /**
 
-      * 用户编码
 
-      */
 
-     private String uid;
 
-     /**
 
-      * 项目ID
 
-      */
 
-     private String pid;
 
-     /**
 
-      * 几何源文件
 
-      */
 
-     @Column(name = "geometry_source_file")
 
-     private String geometrySourceFile;
 
-     /**
 
-      * 几何文件
 
-      */
 
-     @Column(name = "geometry_file")
 
-     private String geometryFile;
 
-     /**
 
-      * 网格源文件
 
-      */
 
-     @Column(name = "grid_source_file")
 
-     private String gridSourceFile;
 
-     /**
 
-      * 网格文件
 
-      */
 
-     @Column(name = "grid_file")
 
-     private String gridFile;
 
-     /**
 
-      * 文件类型
 
-      */
 
-     @Column(name = "grid_file_type")
 
-     private String gridFileType;
 
-     /**
 
-      * 存储fem vtk显示文件
 
-      */
 
-     @Column(name = "vtk_file")
 
-     private String vtkFile;
 
-     /**
 
-      * FEM网格文件
 
-      */
 
-     @Column(name = "fem_grid_file")
 
-     private String femGridFile;
 
-     /**
 
-      * FEM文件类型
 
-      */
 
-     @Column(name = "fem_grid_file_type")
 
-     private String femGridFileType;
 
-     /**
 
-      * 几何文件类型
 
-      */
 
-     @Column(name = "geometry_file_type")
 
-     private String geometryFileType;
 
-     private static final long serialVersionUID = 1L;
 
-     /**
 
-      * 获取项目建模信息
 
-      *
 
-      * @return id - 项目建模信息
 
-      */
 
-     public String getId() {
 
-         return id;
 
-     }
 
-     /**
 
-      * 设置项目建模信息
 
-      *
 
-      * @param id 项目建模信息
 
-      */
 
-     public void setId(String id) {
 
-         this.id = id == null ? null : id.trim();
 
-     }
 
-     /**
 
-      * 获取用户编码
 
-      *
 
-      * @return uid - 用户编码
 
-      */
 
-     public String getUid() {
 
-         return uid;
 
-     }
 
-     /**
 
-      * 设置用户编码
 
-      *
 
-      * @param uid 用户编码
 
-      */
 
-     public void setUid(String uid) {
 
-         this.uid = uid == null ? null : uid.trim();
 
-     }
 
-     /**
 
-      * 获取项目ID
 
-      *
 
-      * @return pid - 项目ID
 
-      */
 
-     public String getPid() {
 
-         return pid;
 
-     }
 
-     /**
 
-      * 设置项目ID
 
-      *
 
-      * @param pid 项目ID
 
-      */
 
-     public void setPid(String pid) {
 
-         this.pid = pid == null ? null : pid.trim();
 
-     }
 
-     /**
 
-      * 获取几何源文件
 
-      *
 
-      * @return geometry_source_file - 几何源文件
 
-      */
 
-     public String getGeometrySourceFile() {
 
-         return geometrySourceFile;
 
-     }
 
-     /**
 
-      * 设置几何源文件
 
-      *
 
-      * @param geometrySourceFile 几何源文件
 
-      */
 
-     public void setGeometrySourceFile(String geometrySourceFile) {
 
-         this.geometrySourceFile = geometrySourceFile == null ? null : geometrySourceFile.trim();
 
-     }
 
-     /**
 
-      * 获取几何文件
 
-      *
 
-      * @return geometry_file - 几何文件
 
-      */
 
-     public String getGeometryFile() {
 
-         return geometryFile;
 
-     }
 
-     /**
 
-      * 设置几何文件
 
-      *
 
-      * @param geometryFile 几何文件
 
-      */
 
-     public void setGeometryFile(String geometryFile) {
 
-         this.geometryFile = geometryFile == null ? null : geometryFile.trim();
 
-     }
 
-     /**
 
-      * 获取网格源文件
 
-      *
 
-      * @return grid_source_file - 网格源文件
 
-      */
 
-     public String getGridSourceFile() {
 
-         return gridSourceFile;
 
-     }
 
-     /**
 
-      * 设置网格源文件
 
-      *
 
-      * @param gridSourceFile 网格源文件
 
-      */
 
-     public void setGridSourceFile(String gridSourceFile) {
 
-         this.gridSourceFile = gridSourceFile == null ? null : gridSourceFile.trim();
 
-     }
 
-     /**
 
-      * 获取网格文件
 
-      *
 
-      * @return grid_file - 网格文件
 
-      */
 
-     public String getGridFile() {
 
-         return gridFile;
 
-     }
 
-     /**
 
-      * 设置网格文件
 
-      *
 
-      * @param gridFile 网格文件
 
-      */
 
-     public void setGridFile(String gridFile) {
 
-         this.gridFile = gridFile == null ? null : gridFile.trim();
 
-     }
 
-     /**
 
-      * 获取文件类型
 
-      *
 
-      * @return grid_file_type - 文件类型
 
-      */
 
-     public String getGridFileType() {
 
-         return gridFileType;
 
-     }
 
-     /**
 
-      * 设置文件类型
 
-      *
 
-      * @param gridFileType 文件类型
 
-      */
 
-     public void setGridFileType(String gridFileType) {
 
-         this.gridFileType = gridFileType == null ? null : gridFileType.trim();
 
-     }
 
-     /**
 
-      * 获取存储fem vtk显示文件
 
-      *
 
-      * @return vtk_file - 存储fem vtk显示文件
 
-      */
 
-     public String getVtkFile() {
 
-         return vtkFile;
 
-     }
 
-     /**
 
-      * 设置存储fem vtk显示文件
 
-      *
 
-      * @param vtkFile 存储fem vtk显示文件
 
-      */
 
-     public void setVtkFile(String vtkFile) {
 
-         this.vtkFile = vtkFile == null ? null : vtkFile.trim();
 
-     }
 
-     /**
 
-      * 获取FEM网格文件
 
-      *
 
-      * @return fem_grid_file - FEM网格文件
 
-      */
 
-     public String getFemGridFile() {
 
-         return femGridFile;
 
-     }
 
-     /**
 
-      * 设置FEM网格文件
 
-      *
 
-      * @param femGridFile FEM网格文件
 
-      */
 
-     public void setFemGridFile(String femGridFile) {
 
-         this.femGridFile = femGridFile == null ? null : femGridFile.trim();
 
-     }
 
-     /**
 
-      * 获取FEM文件类型
 
-      *
 
-      * @return fem_grid_file_type - FEM文件类型
 
-      */
 
-     public String getFemGridFileType() {
 
-         return femGridFileType;
 
-     }
 
-     /**
 
-      * 设置FEM文件类型
 
-      *
 
-      * @param femGridFileType FEM文件类型
 
-      */
 
-     public void setFemGridFileType(String femGridFileType) {
 
-         this.femGridFileType = femGridFileType == null ? null : femGridFileType.trim();
 
-     }
 
-     /**
 
-      * 获取几何文件类型
 
-      *
 
-      * @return geometry_file_type - 几何文件类型
 
-      */
 
-     public String getGeometryFileType() {
 
-         return geometryFileType;
 
-     }
 
-     /**
 
-      * 设置几何文件类型
 
-      *
 
-      * @param geometryFileType 几何文件类型
 
-      */
 
-     public void setGeometryFileType(String geometryFileType) {
 
-         this.geometryFileType = geometryFileType == null ? null : geometryFileType.trim();
 
-     }
 
- }
 
 
  |