|
@@ -66,7 +66,8 @@ public class PlatformServiceImpl extends ServiceImpl<PlatformMapper,Platform> im
|
|
|
platform.setAutoSignUrl(data.get("autoSignUrl"));
|
|
|
platform.setShortAutoSignUrl(data.get("shortAutoSignUrl"));
|
|
|
platform.setShortAutoSignUrlCreate(new Date());
|
|
|
- platform.setAutoSignStatus("1".equals(data.get("autoSignStatus"))?true:false);
|
|
|
+ String autoSignStatus = data.get("autoSignStatus");
|
|
|
+ platform.setAutoSignStatus("1".equals(String.valueOf(autoSignStatus))?true:false);
|
|
|
save(platform);
|
|
|
|
|
|
//电子签章获取认证地址
|