增加数据分类字段
This commit is contained in:
parent
5c74970672
commit
321d1b17a7
|
|
@ -189,6 +189,12 @@ public class SurvHisdataAir extends Model<SurvHisdataAir> {
|
|||
private String deployId;
|
||||
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("DEPLOY_TYPE")
|
||||
private String deployType;
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.id;
|
||||
|
|
|
|||
|
|
@ -313,6 +313,13 @@ public class SurvHisdataSoil extends Model<SurvHisdataSoil> {
|
|||
private String deployId;
|
||||
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("DEPLOY_TYPE")
|
||||
private String deployType;
|
||||
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.id;
|
||||
|
|
|
|||
|
|
@ -182,6 +182,13 @@ public class SurvTransdataAir extends Model<SurvTransdataAir> {
|
|||
private String deployId;
|
||||
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("DEPLOY_TYPE")
|
||||
private String deployType;
|
||||
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.id;
|
||||
|
|
|
|||
|
|
@ -309,6 +309,12 @@ public class SurvTransdataSoil extends Model<SurvTransdataSoil> {
|
|||
@TableField("DEPLOY_ID")
|
||||
private String deployId;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("DEPLOY_TYPE")
|
||||
private String deployType;
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -120,6 +120,7 @@ public class SurvTransdataSoilServiceImpl extends ServiceImpl<SurvTransdataSoilM
|
|||
soil.setStationId(survStationInfo.getId());
|
||||
}
|
||||
}
|
||||
soil.setDeployType(survDeviceDeploy.getDeployType());
|
||||
}
|
||||
|
||||
saveOrUpdate(soil);
|
||||
|
|
@ -196,6 +197,7 @@ public class SurvTransdataSoilServiceImpl extends ServiceImpl<SurvTransdataSoilM
|
|||
air.setStationId(survStationInfo.getId());
|
||||
}
|
||||
}
|
||||
air.setDeployType(survDeviceDeploy.getDeployType());
|
||||
}
|
||||
|
||||
transdataAirService.saveOrUpdate(air);
|
||||
|
|
@ -283,8 +285,9 @@ public class SurvTransdataSoilServiceImpl extends ServiceImpl<SurvTransdataSoilM
|
|||
soil.setStationId(survStationInfo.getId());
|
||||
}
|
||||
}
|
||||
|
||||
soil.setDeployType(survDeviceDeploy.getDeployType());
|
||||
}
|
||||
|
||||
saveOrUpdate(soil);
|
||||
|
||||
|
||||
|
|
@ -359,7 +362,7 @@ public class SurvTransdataSoilServiceImpl extends ServiceImpl<SurvTransdataSoilM
|
|||
air.setStationId(survStationInfo.getId());
|
||||
}
|
||||
}
|
||||
|
||||
air.setDeployType(survDeviceDeploy.getDeployType());
|
||||
}
|
||||
|
||||
transdataAirService.saveOrUpdate(air);
|
||||
|
|
|
|||
Loading…
Reference in New Issue