Commit fa32d31b authored by 韩桐桐's avatar 韩桐桐

Merge branch 'refs/heads/develop_tzs_register_0621' into develop_tzs_register

parents 85e85860 44daba3d
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
and tjvi.car_number like concat('%',#{dto.carNumber},'%') and tjvi.car_number like concat('%',#{dto.carNumber},'%')
</if> </if>
<if test="dto.regDate != null and dto.regDate != ''"> <if test="dto.regDate != null and dto.regDate != ''">
and tjvi.reg_date like concat('%',DATE_FORMAT(#{dto.reg_date},'%Y-%m-%d'),'%') and tjvi.reg_date like concat('%',DATE_FORMAT(#{dto.regDate},'%Y-%m-%d'),'%')
</if> </if>
<if test="dto.auditPassDate != null and dto.auditPassDate != ''"> <if test="dto.auditPassDate != null and dto.auditPassDate != ''">
and tjvi.audit_pass_date like concat('%',DATE_FORMAT(#{dto.auditPassDate},'%Y-%m-%d'),'%') and tjvi.audit_pass_date like concat('%',DATE_FORMAT(#{dto.auditPassDate},'%Y-%m-%d'),'%')
......
...@@ -283,6 +283,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform ...@@ -283,6 +283,7 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
JgVehicleInformation vehicleInformation = new JgVehicleInformation(); JgVehicleInformation vehicleInformation = new JgVehicleInformation();
BeanUtils.copyProperties(vehicleInfoDto, vehicleInformation); BeanUtils.copyProperties(vehicleInfoDto, vehicleInformation);
vehicleInformation.setCreateUserId(reginParams.getUserModel().getUserId()); vehicleInformation.setCreateUserId(reginParams.getUserModel().getUserId());
vehicleInformation.setRegDate(new Date());
vehicleInformation.setCreateUserName(reginParams.getUserModel().getRealName()); vehicleInformation.setCreateUserName(reginParams.getUserModel().getRealName());
vehicleInformation.setGasNum(equipmentLists.size()); vehicleInformation.setGasNum(equipmentLists.size());
vehicleInformation.setVolume(String.valueOf(equipmentLists.stream() vehicleInformation.setVolume(String.valueOf(equipmentLists.stream()
......
...@@ -192,4 +192,12 @@ public class IdxBizJgRegisterInfo extends TzsBaseEntity { ...@@ -192,4 +192,12 @@ public class IdxBizJgRegisterInfo extends TzsBaseEntity {
@TableField("\"LAST_USE_CERT_FILE_PATH\"") @TableField("\"LAST_USE_CERT_FILE_PATH\"")
private String lastUseCertFilePath; private String lastUseCertFilePath;
/**
* 是否球罐
* 1:是
* 0:不是
*/
@TableField("\"WHETHER_SPHERICAL_TANK\"")
private String whetherSphericalTank;
} }
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