This commit is contained in:
pengjie 2023-09-12 18:57:31 +08:00
parent 36ebb5a7ed
commit 79111fdd18
2 changed files with 12 additions and 2 deletions

View File

@ -2,7 +2,8 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zhgd.xmgl.modules.basicdata.mapper.ProjectMapper">
<sql id="detailInfo">
p.project_sn, p.project_id, p.project_name, p.state, p.project_manage, p.project_address, p.project_tel, u.account, u.show_password, u.email, u.user_tel, g.government_name
p.project_sn, p.project_id, p.project_name, p.state, p.project_manage, p.project_address, p.project_tel, u.account, u.show_password, u.email, u.user_tel, g.government_name,
p.longitude, p.latitude
</sql>
<select id="getPageList" resultType="com.zhgd.xmgl.modules.basicdata.dto.ProjectDto">

View File

@ -6,6 +6,9 @@ import lombok.Data;
@Data
public class EngineeringStat {
@ApiModelProperty(value = "工程ID")
private Long id;
@ApiModelProperty(value = "工程名称")
private String engineeringName;
@ -45,6 +48,12 @@ public class EngineeringStat {
@ApiModelProperty(value = "建设地址")
private String address;
@ApiModelProperty(value = "经度")
private String longitude;
@ApiModelProperty(value = "纬度")
private String latitude;
@ApiModelProperty(value = "工程类别(1:房屋建筑;2:市政公用工程;3:轨道交通工程;4:公共建设项目;5:其他)")
private Integer engineeringType;