工程管理

This commit is contained in:
15856 2024-12-05 13:26:37 +08:00
parent 3665596dc5
commit b91884450f
2 changed files with 21 additions and 0 deletions

View File

@ -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;

View File

@ -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>