Commit af8b974b authored by luben's avatar luben

Merge branch 'dev' into 'main'

Dev

See merge request !184
parents ef0e5ffc 0b891ca8
Pipeline #143612 canceled with stages
...@@ -111,6 +111,12 @@ public class GridRegion implements Serializable { ...@@ -111,6 +111,12 @@ public class GridRegion implements Serializable {
private String pId; private String pId;
private String detail;
public String getDetail(){return detail;}
public void setDetail(String detail){this.detail = detail;}
public String getpName(){return pName;} public String getpName(){return pName;}
public void setpName(String pName){this.pName = pName;} public void setpName(String pName){this.pName = pName;}
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
</resultMap> </resultMap>
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.ruoyi.system.domain.grid.GridRegion"> <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.ruoyi.system.domain.grid.GridRegion">
<result column="wg_coordinate" jdbcType="LONGVARCHAR" property="wgCoordinate" /> <result column="wg_coordinate" jdbcType="LONGVARCHAR" property="wgCoordinate" />
<result column="detail" jdbcType="VARCHAR" property="detail" />
</resultMap> </resultMap>
<sql id="Example_Where_Clause"> <sql id="Example_Where_Clause">
<where> <where>
...@@ -91,7 +92,7 @@ ...@@ -91,7 +92,7 @@
ylzd2, ylzd3, ylzd4, ylzd5, wg_purpose, status ylzd2, ylzd3, ylzd4, ylzd5, wg_purpose, status
</sql> </sql>
<sql id="Blob_Column_List"> <sql id="Blob_Column_List">
wg_coordinate wg_coordinate,detail
</sql> </sql>
<select id="selectByExampleWithBLOBs" parameterType="com.ruoyi.system.domain.grid.GridRegionExample" resultMap="ResultMapWithBLOBs"> <select id="selectByExampleWithBLOBs" parameterType="com.ruoyi.system.domain.grid.GridRegionExample" resultMap="ResultMapWithBLOBs">
select select
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment