工程管理
This commit is contained in:
parent
3665596dc5
commit
b91884450f
|
|
@ -132,6 +132,17 @@ public class BmProjectLot {
|
||||||
@ApiModelProperty(value = "费用指标")
|
@ApiModelProperty(value = "费用指标")
|
||||||
private BigDecimal costIndicators;
|
private BigDecimal costIndicators;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "经度")
|
||||||
|
private String longitude;
|
||||||
|
@ApiModelProperty(value = "纬度")
|
||||||
|
private String latitude;
|
||||||
|
@ApiModelProperty(value = "地址")
|
||||||
|
private String address;
|
||||||
|
@ApiModelProperty(value = "省份")
|
||||||
|
private String province;
|
||||||
|
@ApiModelProperty(value = "省份后地址")
|
||||||
|
private String detailsAddress;
|
||||||
|
|
||||||
/** 导出选中列表 */
|
/** 导出选中列表 */
|
||||||
private List<Long> dataCondition;
|
private List<Long> dataCondition;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="remark != null and remark != ''">remark,</if>
|
<if test="remark != null and remark != ''">remark,</if>
|
||||||
<if test="companyId != null and companyId != ''">company_id,</if>
|
<if test="companyId != null and companyId != ''">company_id,</if>
|
||||||
<if test="costIndicators != null and costIndicators != ''">cost_indicators,</if>
|
<if test="costIndicators != null and costIndicators != ''">cost_indicators,</if>
|
||||||
|
<if test="longitude != null and longitude != ''">longitude,</if>
|
||||||
|
<if test="latitude != null and latitude != ''">latitude,</if>
|
||||||
|
<if test="address != null and address != ''">address,</if>
|
||||||
|
<if test="province != null and province != ''">province,</if>
|
||||||
|
<if test="detailsAddress != null and detailsAddress != ''">details_address,</if>
|
||||||
create_time
|
create_time
|
||||||
)values(
|
)values(
|
||||||
<if test="lotName != null and lotName != ''">#{lotName},</if>
|
<if test="lotName != null and lotName != ''">#{lotName},</if>
|
||||||
|
|
@ -133,6 +138,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="remark != null and remark != ''">#{remark},</if>
|
<if test="remark != null and remark != ''">#{remark},</if>
|
||||||
<if test="companyId != null and companyId != ''">#{companyId},</if>
|
<if test="companyId != null and companyId != ''">#{companyId},</if>
|
||||||
<if test="costIndicators != null and costIndicators != ''">#{costIndicators},</if>
|
<if test="costIndicators != null and costIndicators != ''">#{costIndicators},</if>
|
||||||
|
<if test="longitude != null and longitude != ''">#{longitude},</if>
|
||||||
|
<if test="latitude != null and latitude != ''">#{latitude},</if>
|
||||||
|
<if test="address != null and address != ''">#{address},</if>
|
||||||
|
<if test="province != null and province != ''">#{province},</if>
|
||||||
|
<if test="detailsAddress != null and detailsAddress != ''">#{detailsAddress},</if>
|
||||||
sysdate()
|
sysdate()
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue