glj-代码提交

This commit is contained in:
管李杰 2024-03-17 17:59:58 +08:00
parent 367a9bc720
commit 981f6531d7
3 changed files with 11 additions and 2 deletions

View File

@ -25,6 +25,8 @@ public class AdminManager extends DisasterInfo{
private String researchField;
private String vordmId;
private Date reviewTime;
private Date applyTime;

View File

@ -34,7 +34,8 @@
di.disaster_time,
di.disaster_level,
di.disaster_country,
di.sponsor_organization
di.sponsor_organization,
di.vordm_id as vordmId
from guest_manage_disaster_ref gmdr
left join disaster_info di on gmdr.disaster_id = di.id
left join blade_user bu on gmdr.manager_id = bu.id

View File

@ -114,7 +114,13 @@ public class EntityDataServiceImpl extends ServiceImpl<EntityDataMapper, EntityD
remoteSensingSourceData.setProductResolution(entityDataUserVo.getProductResolution());
remoteSensingSourceData.setCloudCover(entityDataUserVo.getCloudCover());
Date date= new Date(DateTime.parse(entityDataUserVo.getProductTime()));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.S'Z'");
Date date = null;
try {
date = sdf.parse(entityDataUserVo.getProductTime());
} catch (ParseException e) {
e.printStackTrace();
}
remoteSensingSourceData.setProductTime(date);
remoteSensingSourceData.setProductBandsNum(entityDataUserVo.getProductBandsNum());
//0-爬虫获取1-未审核2-已审核上传源数据未补充下载 链接3-已审核上传源数据已补充下载链接