|
@@ -265,6 +265,7 @@ public class ZoneController extends SimpleController {
|
|
|
String [] domainArr= domain.split(",");
|
|
|
//域名黑名单
|
|
|
ZoneDomain zoneDomain=new ZoneDomain();
|
|
|
+ zoneDomain.setSupdated(new Date().getTime()/1000);
|
|
|
for(int i=0;i<domainArr.length;i++){
|
|
|
zoneDomain.setZoneId(t.getId());
|
|
|
zoneDomain.setDomain(domainArr[i]);
|
|
@@ -279,6 +280,7 @@ public class ZoneController extends SimpleController {
|
|
|
if(null != industry && !"".equals(industry)){
|
|
|
String [] industryArr= industry.split(",");
|
|
|
ZoneIndustry zoneIndustry = new ZoneIndustry();
|
|
|
+ zoneIndustry.setSupdated(new Date().getTime()/1000);
|
|
|
for(int i = 0; i< industryArr.length; i++){
|
|
|
zoneIndustry.setZoneId(t.getId());
|
|
|
zoneIndustry.setIndustryId(Long.parseLong(industryArr[i]));
|
|
@@ -392,6 +394,7 @@ public class ZoneController extends SimpleController {
|
|
|
if(null != industry && !"".equals(industry)){
|
|
|
String [] industryArr= industry.split(",");
|
|
|
ZoneIndustry zoneIndustry = new ZoneIndustry();
|
|
|
+ zoneIndustry.setSupdated(new Date().getTime()/1000);
|
|
|
for(int i = 0; i< industryArr.length; i++){
|
|
|
zoneIndustry.setZoneId(t.getId());
|
|
|
zoneIndustry.setIndustryId(Long.parseLong(industryArr[i]));
|