增加注册地址字段
This commit is contained in:
@@ -61,4 +61,7 @@ public class LineManagement extends BaseVOEntity{
|
|||||||
*/
|
*/
|
||||||
@ApiModelProperty("客户Json数据")
|
@ApiModelProperty("客户Json数据")
|
||||||
private String customerJson;
|
private String customerJson;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String register;
|
||||||
}
|
}
|
||||||
+4
@@ -55,4 +55,8 @@ public class LineManagementPO extends BaseVOEntity{
|
|||||||
*/
|
*/
|
||||||
@ApiModelProperty("客户Json数据")
|
@ApiModelProperty("客户Json数据")
|
||||||
private String customerJson;
|
private String customerJson;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String register;
|
||||||
|
|
||||||
}
|
}
|
||||||
+3
@@ -55,4 +55,7 @@ public class LineManagementDO extends BaseVOEntity{
|
|||||||
*/
|
*/
|
||||||
@ApiModelProperty("客户Json数据")
|
@ApiModelProperty("客户Json数据")
|
||||||
private String customerJson;
|
private String customerJson;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String register;
|
||||||
}
|
}
|
||||||
@@ -61,4 +61,7 @@ public class LineManagementDTO extends BaseVOEntity{
|
|||||||
*/
|
*/
|
||||||
@ApiModelProperty("客户Json数据")
|
@ApiModelProperty("客户Json数据")
|
||||||
private String customerJson;
|
private String customerJson;
|
||||||
|
|
||||||
|
@ApiModelProperty("注册地址")
|
||||||
|
private String register;
|
||||||
}
|
}
|
||||||
@@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="routeCode" column="route_code" />
|
<result property="routeCode" column="route_code" />
|
||||||
<result property="routeName" column="route_name" />
|
<result property="routeName" column="route_name" />
|
||||||
<result property="customerJson" column="customer_json" />
|
<result property="customerJson" column="customer_json" />
|
||||||
|
<result property="register" column="register" />
|
||||||
<!-- 继承自BaseVOEntity的字段 -->
|
<!-- 继承自BaseVOEntity的字段 -->
|
||||||
<result property="createTime" column="create_time" />
|
<result property="createTime" column="create_time" />
|
||||||
<result property="createBy" column="create_by" />
|
<result property="createBy" column="create_by" />
|
||||||
@@ -43,7 +44,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
a.update_by,
|
a.update_by,
|
||||||
a.update_by_name,
|
a.update_by_name,
|
||||||
a.update_time,
|
a.update_time,
|
||||||
a.del_flag
|
a.del_flag,
|
||||||
|
a.register
|
||||||
from line_management a
|
from line_management a
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user