123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- 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;
- /**
- * 几何文件hsh
- */
- @Column(name = "geometry_file")
- private String geometryFile;
- /**
- * 网格源文件
- */
- @Column(name = "grids_source_file")
- private String gridsSourceFile;
- /**
- * 网格文件
- */
- @Column(name = "grids_file")
- private String gridsFile;
- /**
- * 几何源文件类型
- */
- @Column(name = "geometry_source_filetype")
- private String geometrySourceFiletype;
- /**
- * 几何文件hsh类型
- */
- @Column(name = "geometry_filetype")
- private String geometryFiletype;
- /**
- * 网格源文件类型
- */
- @Column(name = "grids_source_filetype")
- private String gridsSourceFiletype;
- /**
- * 网格文件
- */
- @Column(name = "grids_filetype")
- private String gridsFiletype;
- 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();
- }
- /**
- * 获取几何文件hsh
- *
- * @return geometry_file - 几何文件hsh
- */
- public String getGeometryFile() {
- return geometryFile;
- }
- /**
- * 设置几何文件hsh
- *
- * @param geometryFile 几何文件hsh
- */
- public void setGeometryFile(String geometryFile) {
- this.geometryFile = geometryFile == null ? null : geometryFile.trim();
- }
- /**
- * 获取网格源文件
- *
- * @return grids_source_file - 网格源文件
- */
- public String getGridsSourceFile() {
- return gridsSourceFile;
- }
- /**
- * 设置网格源文件
- *
- * @param gridsSourceFile 网格源文件
- */
- public void setGridsSourceFile(String gridsSourceFile) {
- this.gridsSourceFile = gridsSourceFile == null ? null : gridsSourceFile.trim();
- }
- /**
- * 获取网格文件
- *
- * @return grids_file - 网格文件
- */
- public String getGridsFile() {
- return gridsFile;
- }
- /**
- * 设置网格文件
- *
- * @param gridsFile 网格文件
- */
- public void setGridsFile(String gridsFile) {
- this.gridsFile = gridsFile == null ? null : gridsFile.trim();
- }
- /**
- * 获取几何源文件类型
- *
- * @return geometry_source_filetype - 几何源文件类型
- */
- public String getGeometrySourceFiletype() {
- return geometrySourceFiletype;
- }
- /**
- * 设置几何源文件类型
- *
- * @param geometrySourceFiletype 几何源文件类型
- */
- public void setGeometrySourceFiletype(String geometrySourceFiletype) {
- this.geometrySourceFiletype = geometrySourceFiletype == null ? null : geometrySourceFiletype.trim();
- }
- /**
- * 获取几何文件hsh类型
- *
- * @return geometry_filetype - 几何文件hsh类型
- */
- public String getGeometryFiletype() {
- return geometryFiletype;
- }
- /**
- * 设置几何文件hsh类型
- *
- * @param geometryFiletype 几何文件hsh类型
- */
- public void setGeometryFiletype(String geometryFiletype) {
- this.geometryFiletype = geometryFiletype == null ? null : geometryFiletype.trim();
- }
- /**
- * 获取网格源文件类型
- *
- * @return grids_source_filetype - 网格源文件类型
- */
- public String getGridsSourceFiletype() {
- return gridsSourceFiletype;
- }
- /**
- * 设置网格源文件类型
- *
- * @param gridsSourceFiletype 网格源文件类型
- */
- public void setGridsSourceFiletype(String gridsSourceFiletype) {
- this.gridsSourceFiletype = gridsSourceFiletype == null ? null : gridsSourceFiletype.trim();
- }
- /**
- * 获取网格文件
- *
- * @return grids_filetype - 网格文件
- */
- public String getGridsFiletype() {
- return gridsFiletype;
- }
- /**
- * 设置网格文件
- *
- * @param gridsFiletype 网格文件
- */
- public void setGridsFiletype(String gridsFiletype) {
- this.gridsFiletype = gridsFiletype == null ? null : gridsFiletype.trim();
- }
- }
|