src/main/java/com/lf/server/controller/show/ApplyController.java
@@ -2,17 +2,21 @@ import com.lf.server.annotation.SysLog; import com.lf.server.controller.all.BaseController; import com.lf.server.entity.all.HttpStatus; import com.lf.server.entity.all.ResponseMsg; import com.lf.server.entity.all.StaticData; import com.lf.server.entity.ctrl.DownloadReqEntity; import com.lf.server.entity.data.DownloadEntity; import com.lf.server.entity.show.ApplyEntity; import com.lf.server.entity.show.FlowEntity; import com.lf.server.entity.sys.UserEntity; import com.lf.server.helper.AesHelper; import com.lf.server.helper.StringHelper; import com.lf.server.helper.WebHelper; import com.lf.server.service.data.DownloadService; import com.lf.server.service.show.ApplyService; import com.lf.server.service.show.FlowService; import com.lf.server.service.sys.DownlogService; import com.lf.server.service.sys.TokenService; import com.lf.server.service.sys.UserService; import io.swagger.annotations.Api; @@ -23,6 +27,7 @@ import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.sql.Timestamp; import java.util.List; @@ -45,6 +50,12 @@ @Autowired UserService userService; @Autowired DownlogService downlogService; @Autowired DownloadService downloadService; @SysLog() @ApiOperation(value = "æå ¥æ°æ®ç³è¯·") @@ -266,4 +277,29 @@ return fail(ex, null); } } @SysLog() @ApiOperation(value = "ä¸è½½æä»¶") @ApiImplicitParams({ @ApiImplicitParam(name = "guid", value = "æä»¶GUID", dataType = "String", paramType = "query") }) @ResponseBody @GetMapping(value = "/downloadFile") public void downloadFile(String guid, HttpServletRequest req, HttpServletResponse res) { try { DownloadEntity de = downloadService.selectByGuid(guid); if (null == de) { WebHelper.writeInfo(HttpStatus.NOT_FOUND, "æä»¶ä¸åå¨", res); return; } UserEntity ue = tokenService.getCurrentUser(req); downlogService.updateInfos(ue, de, req); String filePath = downloadService.getDownloadFilePath(de); WebHelper.download(filePath, de.getName(), res); } catch (Exception ex) { WebHelper.writeInfo(HttpStatus.ERROR, ex.getMessage(), res); } } } src/main/java/com/lf/server/entity/si/PlpipelineaEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,235 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinea * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipeline_a") @EqualsAndHashCode(callSuper = false) public class PlpipelineaEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String pipename; private String medium; private Double pipelength; private Double begstax; private Double begstay; private Double begstaelev; private Double endstax; private Double endstay; private Double endstaelev; private String projname; private Timestamp startdate; private Timestamp producdate; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private String mpag; private String odiameter; private String pipestage; public PlpipelineaEntity() { } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } public Double getPipelength() { return pipelength; } public void setPipelength(Double pipelength) { this.pipelength = pipelength; } public Double getBegstax() { return begstax; } public void setBegstax(Double begstax) { this.begstax = begstax; } public Double getBegstay() { return begstay; } public void setBegstay(Double begstay) { this.begstay = begstay; } public Double getBegstaelev() { return begstaelev; } public void setBegstaelev(Double begstaelev) { this.begstaelev = begstaelev; } public Double getEndstax() { return endstax; } public void setEndstax(Double endstax) { this.endstax = endstax; } public Double getEndstay() { return endstay; } public void setEndstay(Double endstay) { this.endstay = endstay; } public Double getEndstaelev() { return endstaelev; } public void setEndstaelev(Double endstaelev) { this.endstaelev = endstaelev; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public Timestamp getStartdate() { return startdate; } public void setStartdate(Timestamp startdate) { this.startdate = startdate; } public Timestamp getProducdate() { return producdate; } public void setProducdate(Timestamp producdate) { this.producdate = producdate; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public String getMpag() { return mpag; } public void setMpag(String mpag) { this.mpag = mpag; } public String getOdiameter() { return odiameter; } public void setOdiameter(String odiameter) { this.odiameter = odiameter; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinebEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,235 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelineb * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipeline_b") @EqualsAndHashCode(callSuper = false) public class PlpipelinebEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String pipename; private String medium; private Double pipelength; private Double begstax; private Double begstay; private Double begstaelev; private Double endstax; private Double endstay; private Double endstaelev; private String projname; private Timestamp startdate; private Timestamp producdate; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private String mpag; private String odiameter; private String pipestage; public PlpipelinebEntity() { } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } public Double getPipelength() { return pipelength; } public void setPipelength(Double pipelength) { this.pipelength = pipelength; } public Double getBegstax() { return begstax; } public void setBegstax(Double begstax) { this.begstax = begstax; } public Double getBegstay() { return begstay; } public void setBegstay(Double begstay) { this.begstay = begstay; } public Double getBegstaelev() { return begstaelev; } public void setBegstaelev(Double begstaelev) { this.begstaelev = begstaelev; } public Double getEndstax() { return endstax; } public void setEndstax(Double endstax) { this.endstax = endstax; } public Double getEndstay() { return endstay; } public void setEndstay(Double endstay) { this.endstay = endstay; } public Double getEndstaelev() { return endstaelev; } public void setEndstaelev(Double endstaelev) { this.endstaelev = endstaelev; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public Timestamp getStartdate() { return startdate; } public void setStartdate(Timestamp startdate) { this.startdate = startdate; } public Timestamp getProducdate() { return producdate; } public void setProducdate(Timestamp producdate) { this.producdate = producdate; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public String getMpag() { return mpag; } public void setMpag(String mpag) { this.mpag = mpag; } public String getOdiameter() { return odiameter; } public void setOdiameter(String odiameter) { this.odiameter = odiameter; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinedEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,235 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelined * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipeline_d") @EqualsAndHashCode(callSuper = false) public class PlpipelinedEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String pipename; private String medium; private Double pipelength; private Double begstax; private Double begstay; private Double begstaelev; private Double endstax; private Double endstay; private Double endstaelev; private String projname; private Timestamp startdate; private Timestamp producdate; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private String mpag; private String odiameter; private String pipestage; public PlpipelinedEntity() { } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } public Double getPipelength() { return pipelength; } public void setPipelength(Double pipelength) { this.pipelength = pipelength; } public Double getBegstax() { return begstax; } public void setBegstax(Double begstax) { this.begstax = begstax; } public Double getBegstay() { return begstay; } public void setBegstay(Double begstay) { this.begstay = begstay; } public Double getBegstaelev() { return begstaelev; } public void setBegstaelev(Double begstaelev) { this.begstaelev = begstaelev; } public Double getEndstax() { return endstax; } public void setEndstax(Double endstax) { this.endstax = endstax; } public Double getEndstay() { return endstay; } public void setEndstay(Double endstay) { this.endstay = endstay; } public Double getEndstaelev() { return endstaelev; } public void setEndstaelev(Double endstaelev) { this.endstaelev = endstaelev; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public Timestamp getStartdate() { return startdate; } public void setStartdate(Timestamp startdate) { this.startdate = startdate; } public Timestamp getProducdate() { return producdate; } public void setProducdate(Timestamp producdate) { this.producdate = producdate; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public String getMpag() { return mpag; } public void setMpag(String mpag) { this.mpag = mpag; } public String getOdiameter() { return odiameter; } public void setOdiameter(String odiameter) { this.odiameter = odiameter; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinefEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,235 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinef * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipeline_f") @EqualsAndHashCode(callSuper = false) public class PlpipelinefEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String pipename; private String medium; private Double pipelength; private Double begstax; private Double begstay; private Double begstaelev; private Double endstax; private Double endstay; private Double endstaelev; private String projname; private Timestamp startdate; private Timestamp producdate; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private String mpag; private String odiameter; private String pipestage; public PlpipelinefEntity() { } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public String getMedium() { return medium; } public void setMedium(String medium) { this.medium = medium; } public Double getPipelength() { return pipelength; } public void setPipelength(Double pipelength) { this.pipelength = pipelength; } public Double getBegstax() { return begstax; } public void setBegstax(Double begstax) { this.begstax = begstax; } public Double getBegstay() { return begstay; } public void setBegstay(Double begstay) { this.begstay = begstay; } public Double getBegstaelev() { return begstaelev; } public void setBegstaelev(Double begstaelev) { this.begstaelev = begstaelev; } public Double getEndstax() { return endstax; } public void setEndstax(Double endstax) { this.endstax = endstax; } public Double getEndstay() { return endstay; } public void setEndstay(Double endstay) { this.endstay = endstay; } public Double getEndstaelev() { return endstaelev; } public void setEndstaelev(Double endstaelev) { this.endstaelev = endstaelev; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public Timestamp getStartdate() { return startdate; } public void setStartdate(Timestamp startdate) { this.startdate = startdate; } public Timestamp getProducdate() { return producdate; } public void setProducdate(Timestamp producdate) { this.producdate = producdate; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public String getMpag() { return mpag; } public void setMpag(String mpag) { this.mpag = mpag; } public String getOdiameter() { return odiameter; } public void setOdiameter(String odiameter) { this.odiameter = odiameter; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinepointaEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,205 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinepointa * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipelinepoint_a") @EqualsAndHashCode(callSuper = false) public class PlpipelinepointaEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String segname; private String cpname; private String cptype; private String projname; private String pipename; private Double stavalue; private Double x; private Double y; private Double elev; private Double depth; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private Double turnangle; private String pipestage; public PlpipelinepointaEntity() { } public String getSegname() { return segname; } public void setSegname(String segname) { this.segname = segname; } public String getCpname() { return cpname; } public void setCpname(String cpname) { this.cpname = cpname; } public String getCptype() { return cptype; } public void setCptype(String cptype) { this.cptype = cptype; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public Double getStavalue() { return stavalue; } public void setStavalue(Double stavalue) { this.stavalue = stavalue; } public Double getX() { return x; } public void setX(Double x) { this.x = x; } public Double getY() { return y; } public void setY(Double y) { this.y = y; } public Double getElev() { return elev; } public void setElev(Double elev) { this.elev = elev; } public Double getDepth() { return depth; } public void setDepth(Double depth) { this.depth = depth; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public Double getTurnangle() { return turnangle; } public void setTurnangle(Double turnangle) { this.turnangle = turnangle; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinepointbEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,205 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinepointb * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipelinepoint_b") @EqualsAndHashCode(callSuper = false) public class PlpipelinepointbEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String segname; private String cpname; private String cptype; private String projname; private String pipename; private Double stavalue; private Double x; private Double y; private Double elev; private Double depth; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private Double turnangle; private String pipestage; public PlpipelinepointbEntity() { } public String getSegname() { return segname; } public void setSegname(String segname) { this.segname = segname; } public String getCpname() { return cpname; } public void setCpname(String cpname) { this.cpname = cpname; } public String getCptype() { return cptype; } public void setCptype(String cptype) { this.cptype = cptype; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public Double getStavalue() { return stavalue; } public void setStavalue(Double stavalue) { this.stavalue = stavalue; } public Double getX() { return x; } public void setX(Double x) { this.x = x; } public Double getY() { return y; } public void setY(Double y) { this.y = y; } public Double getElev() { return elev; } public void setElev(Double elev) { this.elev = elev; } public Double getDepth() { return depth; } public void setDepth(Double depth) { this.depth = depth; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public Double getTurnangle() { return turnangle; } public void setTurnangle(Double turnangle) { this.turnangle = turnangle; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinepointdEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,205 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinepointd * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipelinepoint_d") @EqualsAndHashCode(callSuper = false) public class PlpipelinepointdEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String segname; private String cpname; private String cptype; private String projname; private String pipename; private Double stavalue; private Double x; private Double y; private Double elev; private Double depth; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private Double turnangle; private String pipestage; public PlpipelinepointdEntity() { } public String getSegname() { return segname; } public void setSegname(String segname) { this.segname = segname; } public String getCpname() { return cpname; } public void setCpname(String cpname) { this.cpname = cpname; } public String getCptype() { return cptype; } public void setCptype(String cptype) { this.cptype = cptype; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public Double getStavalue() { return stavalue; } public void setStavalue(Double stavalue) { this.stavalue = stavalue; } public Double getX() { return x; } public void setX(Double x) { this.x = x; } public Double getY() { return y; } public void setY(Double y) { this.y = y; } public Double getElev() { return elev; } public void setElev(Double elev) { this.elev = elev; } public Double getDepth() { return depth; } public void setDepth(Double depth) { this.depth = depth; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public Double getTurnangle() { return turnangle; } public void setTurnangle(Double turnangle) { this.turnangle = turnangle; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/entity/si/PlpipelinepointfEntity.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,205 @@ package com.lf.server.entity.si; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.lf.server.entity.all.BaseGeoEntity; import lombok.*; import java.math.BigDecimal; import java.sql.Timestamp; import java.time.LocalDate; /** * Plpipelinepointf * @author WWW */ @Data @AllArgsConstructor @TableName("si.pl_pipelinepoint_f") @EqualsAndHashCode(callSuper = false) public class PlpipelinepointfEntity extends BaseGeoEntity { private static final long serialVersionUID = 827932414518637696L; private String segname; private String cpname; private String cptype; private String projname; private String pipename; private Double stavalue; private Double x; private Double y; private Double elev; private Double depth; private String belongs; private String belongsid; private String datastatus; private String remarks; private String version; private String datastage; private Double turnangle; private String pipestage; public PlpipelinepointfEntity() { } public String getSegname() { return segname; } public void setSegname(String segname) { this.segname = segname; } public String getCpname() { return cpname; } public void setCpname(String cpname) { this.cpname = cpname; } public String getCptype() { return cptype; } public void setCptype(String cptype) { this.cptype = cptype; } public String getProjname() { return projname; } public void setProjname(String projname) { this.projname = projname; } public String getPipename() { return pipename; } public void setPipename(String pipename) { this.pipename = pipename; } public Double getStavalue() { return stavalue; } public void setStavalue(Double stavalue) { this.stavalue = stavalue; } public Double getX() { return x; } public void setX(Double x) { this.x = x; } public Double getY() { return y; } public void setY(Double y) { this.y = y; } public Double getElev() { return elev; } public void setElev(Double elev) { this.elev = elev; } public Double getDepth() { return depth; } public void setDepth(Double depth) { this.depth = depth; } public String getBelongs() { return belongs; } public void setBelongs(String belongs) { this.belongs = belongs; } public String getBelongsid() { return belongsid; } public void setBelongsid(String belongsid) { this.belongsid = belongsid; } public String getDatastatus() { return datastatus; } public void setDatastatus(String datastatus) { this.datastatus = datastatus; } public String getRemarks() { return remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public String getDatastage() { return datastage; } public void setDatastage(String datastage) { this.datastage = datastage; } public Double getTurnangle() { return turnangle; } public void setTurnangle(Double turnangle) { this.turnangle = turnangle; } public String getPipestage() { return pipestage; } public void setPipestage(String pipestage) { this.pipestage = pipestage; } } src/main/java/com/lf/server/mapper/si/PlpipelineaMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelineaEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinea * @author WWW */ @Mapper @Repository public interface PlpipelineaMapper extends GeomBaseMapper<PlpipelineaEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinebMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinebEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelineb * @author WWW */ @Mapper @Repository public interface PlpipelinebMapper extends GeomBaseMapper<PlpipelinebEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinedMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinedEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelined * @author WWW */ @Mapper @Repository public interface PlpipelinedMapper extends GeomBaseMapper<PlpipelinedEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinefMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinefEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinef * @author WWW */ @Mapper @Repository public interface PlpipelinefMapper extends GeomBaseMapper<PlpipelinefEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinepointaMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinepointaEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinepointa * @author WWW */ @Mapper @Repository public interface PlpipelinepointaMapper extends GeomBaseMapper<PlpipelinepointaEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinepointbMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinepointbEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinepointb * @author WWW */ @Mapper @Repository public interface PlpipelinepointbMapper extends GeomBaseMapper<PlpipelinepointbEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinepointdMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinepointdEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinepointd * @author WWW */ @Mapper @Repository public interface PlpipelinepointdMapper extends GeomBaseMapper<PlpipelinepointdEntity> { } src/main/java/com/lf/server/mapper/si/PlpipelinepointfMapper.java
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ package com.lf.server.mapper.si; import com.lf.server.entity.si.PlpipelinepointfEntity; import com.lf.server.mapper.all.GeomBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; /** * Plpipelinepointf * @author WWW */ @Mapper @Repository public interface PlpipelinepointfMapper extends GeomBaseMapper<PlpipelinepointfEntity> { }