2019-06-03 14:53:39 +08:00
|
|
|
|
package com.nis.web.service.basics;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import java.util.List;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
import java.util.Properties;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
|
|
|
import org.apache.ibatis.session.ExecutorType;
|
|
|
|
|
|
import org.apache.ibatis.session.SqlSession;
|
|
|
|
|
|
import org.apache.ibatis.session.SqlSessionFactory;
|
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
|
|
import com.nis.domain.FunctionRegionDict;
|
|
|
|
|
|
import com.nis.domain.FunctionServiceDict;
|
|
|
|
|
|
import com.nis.domain.Page;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
import com.nis.domain.basics.CommonGroupInfo;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
import com.nis.domain.basics.IpCommCfg;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
import com.nis.domain.basics.PolicyGroupInfo;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
import com.nis.domain.configuration.BaseIpCfg;
|
|
|
|
|
|
import com.nis.domain.configuration.CfgIndexInfo;
|
2019-06-05 10:40:36 +08:00
|
|
|
|
import com.nis.exceptions.MaatConvertException;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
import com.nis.util.ConfigServiceUtil;
|
|
|
|
|
|
import com.nis.util.Constants;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
import com.nis.util.StringUtils;
|
|
|
|
|
|
import com.nis.web.controller.configuration.ObjectGroupController;
|
2019-06-20 18:06:38 +08:00
|
|
|
|
import com.nis.web.dao.basics.CommonGroupManageDao;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
import com.nis.web.dao.basics.IpCommGroupCfgDao;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
import com.nis.web.dao.basics.PolicyGroupInfoDao;
|
|
|
|
|
|
import com.nis.web.dao.configuration.CommonPolicyDao;
|
2019-06-03 14:53:39 +08:00
|
|
|
|
import com.nis.web.service.BaseService;
|
|
|
|
|
|
import com.nis.web.service.SpringContextHolder;
|
|
|
|
|
|
@Service
|
|
|
|
|
|
public class IpCommGroupCfgService extends BaseService {
|
2019-06-05 10:40:36 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
|
private IpCommGroupCfgDao ipCommGroupCfgDao;
|
2019-06-10 14:10:00 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
|
private PolicyGroupInfoDao policyGroupInfoDao;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
|
private CommonPolicyDao commonPolicyDao;
|
2019-06-20 18:06:38 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
|
private CommonGroupManageDao commonGroupManageDao;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
|
2019-06-05 17:49:39 +08:00
|
|
|
|
private CommonGroupManageService groupManageService = SpringContextHolder.getBean(CommonGroupManageService.class);
|
2019-06-10 14:10:00 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* @param page
|
|
|
|
|
|
* @param entity
|
|
|
|
|
|
* @return
|
|
|
|
|
|
*/
|
|
|
|
|
|
public Page<IpCommCfg> findPage(Page<IpCommCfg> page, IpCommCfg entity) {
|
|
|
|
|
|
entity.getSqlMap().put("dsf", configScopeFilter(entity.getCurrentUser(),"r"));
|
|
|
|
|
|
entity.setPage(page);
|
|
|
|
|
|
List<IpCommCfg> list=ipCommGroupCfgDao.findPage(entity);
|
|
|
|
|
|
page.setList(list);
|
|
|
|
|
|
return page;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public List<IpCommCfg> findByPage(String ids) {
|
|
|
|
|
|
List<IpCommCfg> list=ipCommGroupCfgDao.findByPage(ids);
|
|
|
|
|
|
return list;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IpCommCfg get(Long id ) {
|
|
|
|
|
|
return ipCommGroupCfgDao.get(id);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Transactional(readOnly=false,rollbackFor=RuntimeException.class)
|
|
|
|
|
|
public void update(IpCommCfg entity){
|
2019-06-20 18:06:38 +08:00
|
|
|
|
Date editTime=new Date();
|
2019-06-14 17:12:41 +08:00
|
|
|
|
// 获取分组ID
|
|
|
|
|
|
Integer serviceGroupId = groupManageService.getServiceGroupId(entity.getGroupName(), Constants.IP_OBJ_GROUP_TYPE);
|
2019-06-20 18:06:38 +08:00
|
|
|
|
entity.setGroupId(serviceGroupId);
|
|
|
|
|
|
entity.setEditTime(editTime);
|
|
|
|
|
|
entity.setEditorId(entity.getCurrentUser().getId());
|
2019-06-03 14:53:39 +08:00
|
|
|
|
ipCommGroupCfgDao.update(entity);
|
2019-06-14 17:12:41 +08:00
|
|
|
|
|
2019-06-05 17:49:39 +08:00
|
|
|
|
// 更新分组状态
|
2019-06-13 20:57:29 +08:00
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos = new ArrayList<PolicyGroupInfo>();
|
2019-06-14 17:12:41 +08:00
|
|
|
|
policyGroupInfos.addAll(policyGroupInfoDao.findPolicyByServiceGroupInfoList(entity.getUserRegion1())); // old
|
|
|
|
|
|
if(!entity.getUserRegion1().equals(entity.getGroupId()+"")) { // 分组已修改
|
|
|
|
|
|
policyGroupInfos.addAll(policyGroupInfoDao.findPolicyByServiceGroupInfoList(entity.getGroupId()+"")); // new
|
2019-06-10 18:31:52 +08:00
|
|
|
|
}
|
2019-06-14 17:12:41 +08:00
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
|
2019-06-13 20:57:29 +08:00
|
|
|
|
transObjGroupToMaat(policyGroupInfos);
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<IpCommCfg> getByIds(String ids) {
|
|
|
|
|
|
if(ids==null) {
|
|
|
|
|
|
throw new RuntimeException("ids is null!");
|
|
|
|
|
|
}
|
|
|
|
|
|
return ipCommGroupCfgDao.getByIds(ids);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//新增
|
|
|
|
|
|
@Transactional(readOnly=false,rollbackFor=RuntimeException.class)
|
|
|
|
|
|
public void saveIpCommGroupCfg(CfgIndexInfo entity) {
|
|
|
|
|
|
Date createTime=new Date();
|
|
|
|
|
|
if(CollectionUtils.isNotEmpty(entity.getIpCommGroupCfgList())) {
|
2019-06-14 17:12:41 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取分组ID
|
|
|
|
|
|
Integer serviceGroupId = groupManageService.getServiceGroupId(entity.getGroupName(), Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos=policyGroupInfoDao.findPolicyByServiceGroupInfoList(serviceGroupId+"");
|
|
|
|
|
|
|
|
|
|
|
|
for (IpCommCfg cfg : entity.getIpCommGroupCfgList()) {
|
|
|
|
|
|
BeanUtils.copyProperties(entity, cfg, new String[]{"cfgId","userregion3"});
|
|
|
|
|
|
|
2019-06-05 10:40:36 +08:00
|
|
|
|
Integer regionId = 0;
|
|
|
|
|
|
List<Integer> regionIds = ConfigServiceUtil.getId(3, 1);
|
|
|
|
|
|
if(regionIds!=null && regionIds.size()>0){
|
|
|
|
|
|
regionId = regionIds.get(0);
|
|
|
|
|
|
}else {
|
|
|
|
|
|
throw new MaatConvertException("Get region id failed");
|
|
|
|
|
|
}
|
2019-06-14 17:12:41 +08:00
|
|
|
|
cfg.setRegionId(regionId);
|
|
|
|
|
|
|
|
|
|
|
|
cfg.setRequestId(0);
|
|
|
|
|
|
cfg.setClassify("0");
|
|
|
|
|
|
cfg.setAttribute("0");
|
|
|
|
|
|
cfg.setLable("0");
|
|
|
|
|
|
cfg.setCreateTime(createTime);
|
|
|
|
|
|
cfg.setCreatorId(entity.getCurrentUser().getId());
|
|
|
|
|
|
cfg.setIsValid(Constants.VALID_NO);
|
|
|
|
|
|
cfg.setIsAudit(Constants.AUDIT_NOT_YET);
|
|
|
|
|
|
cfg.setGroupId(serviceGroupId);
|
|
|
|
|
|
ipCommGroupCfgDao.insertForBatch(cfg);
|
|
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
2019-06-05 17:49:39 +08:00
|
|
|
|
// 更新分组状态
|
2019-06-19 16:15:21 +08:00
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
2019-06-13 20:57:29 +08:00
|
|
|
|
transObjGroupToMaat(policyGroupInfos);
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
2019-06-10 14:10:00 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-19 16:15:21 +08:00
|
|
|
|
public void delete(String ids, String groupIds, IpCommCfg cfg, HttpServletRequest request, HttpServletResponse response) throws Exception {
|
|
|
|
|
|
if(ids == null) {
|
|
|
|
|
|
groupIds = "";
|
|
|
|
|
|
String cfgIds = "";
|
|
|
|
|
|
String serviceGroupIds = "";
|
|
|
|
|
|
|
|
|
|
|
|
// 删除操作后获取 ①需配置更新的分组(存在域配置)②需配置取消的分组(无域配置)-> 配置分别操作更新或取消
|
|
|
|
|
|
List<IpCommCfg> set = ipCommGroupCfgDao.getGroupIds(cfg);
|
|
|
|
|
|
if(set.size() == 0) { // 无可删除配置
|
|
|
|
|
|
return;
|
|
|
|
|
|
}else {
|
|
|
|
|
|
for (IpCommCfg ipCommCfg : set) {
|
|
|
|
|
|
Integer groupId = ipCommCfg.getGroupId();
|
|
|
|
|
|
cfgIds += ","+ipCommCfg.getCfgId();
|
|
|
|
|
|
if(!serviceGroupIds.contains(groupId+"")) {
|
|
|
|
|
|
serviceGroupIds += ","+groupId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
cfgIds = cfgIds.substring(1);
|
|
|
|
|
|
serviceGroupIds = serviceGroupIds.substring(1);
|
|
|
|
|
|
}
|
|
|
|
|
|
ipCommGroupCfgDao.delete(cfgIds);
|
|
|
|
|
|
|
|
|
|
|
|
String[] strings = serviceGroupIds.split(",");
|
|
|
|
|
|
serviceGroupIds = "";
|
|
|
|
|
|
for (String groupId : strings) {
|
|
|
|
|
|
Integer size = ipCommGroupCfgDao.getCfgInfoByGroupIds(groupId);
|
|
|
|
|
|
if(size == 0) { // 需配置取消
|
|
|
|
|
|
serviceGroupIds += ","+groupId;
|
|
|
|
|
|
}else { // 需配置更新
|
|
|
|
|
|
groupIds += ","+groupId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 配置取消
|
|
|
|
|
|
if(StringUtils.isNotBlank(serviceGroupIds)) {
|
|
|
|
|
|
serviceGroupIds = serviceGroupIds.substring(1);
|
|
|
|
|
|
ObjectGroupController groupController = SpringContextHolder.getBean(ObjectGroupController.class);
|
|
|
|
|
|
Page<CfgIndexInfo> auditPage = new Page<CfgIndexInfo>(request,response,"r");
|
|
|
|
|
|
Properties props = groupController.getMsgProp();
|
|
|
|
|
|
|
|
|
|
|
|
// 配置未生效
|
2019-06-21 15:59:18 +08:00
|
|
|
|
/*String updateStatusGroupIds = "";
|
2019-06-19 16:15:21 +08:00
|
|
|
|
for (String groupId : serviceGroupIds.split(",")) {
|
|
|
|
|
|
List<CfgIndexInfo> list = commonPolicyDao.getObjGroupListByGroupIds(groupId, 888, Constants.VALID_NO);
|
|
|
|
|
|
if(list.size() > 0) {
|
|
|
|
|
|
updateStatusGroupIds += ","+groupId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if(StringUtils.isNotBlank(updateStatusGroupIds)) {
|
|
|
|
|
|
updateStatusGroupIds = updateStatusGroupIds.substring(1);
|
|
|
|
|
|
CfgIndexInfo entity = new CfgIndexInfo();
|
|
|
|
|
|
entity.setUserRegion5(updateStatusGroupIds);
|
|
|
|
|
|
entity.setFunctionId(888);
|
|
|
|
|
|
entity.setCommonGroupIds("");
|
|
|
|
|
|
entity.setIsValid(Constants.VALID_NO);
|
|
|
|
|
|
commonPolicyDao.updateCfgIndexCommonGroupIdsBatch(entity);
|
|
|
|
|
|
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos=policyGroupInfoDao.findPolicyByServiceGroupInfoList(updateStatusGroupIds);
|
|
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
2019-06-21 15:59:18 +08:00
|
|
|
|
}*/
|
2019-06-19 16:15:21 +08:00
|
|
|
|
|
2019-06-21 15:59:18 +08:00
|
|
|
|
// 配置已生效×
|
|
|
|
|
|
// 组下无域配置common_group_ids -> "",ud_flag -> 0
|
2019-06-19 16:15:21 +08:00
|
|
|
|
CfgIndexInfo entity = new CfgIndexInfo();
|
|
|
|
|
|
entity.setUserRegion5(serviceGroupIds);
|
|
|
|
|
|
entity.setFunctionId(888);
|
2019-06-21 15:59:18 +08:00
|
|
|
|
entity.setCommonGroupIds("");
|
|
|
|
|
|
commonPolicyDao.updateCfgIndexCommonGroupIdsBatch(entity);
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos=policyGroupInfoDao.findPolicyByServiceGroupInfoList(serviceGroupIds);
|
|
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
|
|
|
|
|
|
entity.setServiceId(0);
|
2019-06-19 16:15:21 +08:00
|
|
|
|
entity.setIsValid(Constants.VALID_NO);
|
|
|
|
|
|
entity.setIsAudit(Constants.AUDIT_NOT_YES);
|
|
|
|
|
|
entity.setBatchAuditValue("1");
|
|
|
|
|
|
entity.setBatchValidValue("1,0");
|
|
|
|
|
|
groupController.auditAll(auditPage, Constants.AUDIT_NOT_YES, entity, props);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 配置更新
|
|
|
|
|
|
if(StringUtils.isNotBlank(groupIds)) {
|
|
|
|
|
|
groupIds = groupIds.substring(1);
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos = policyGroupInfoDao.findPolicyByServiceGroupInfoList(groupIds);
|
|
|
|
|
|
transObjGroupToMaat(policyGroupInfos);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos = policyGroupInfoDao.findPolicyByServiceGroupInfoList(groupIds);
|
|
|
|
|
|
ipCommGroupCfgDao.delete(ids);
|
|
|
|
|
|
// 更新分组状态
|
|
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
transObjGroupToMaat(policyGroupInfos);
|
|
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-06-05 10:40:36 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
@Transactional(readOnly=false,rollbackFor=RuntimeException.class)
|
2019-06-20 18:06:38 +08:00
|
|
|
|
public void saveAndSend(FunctionRegionDict regionDict, FunctionServiceDict serviceDict, List<BaseIpCfg> cfgs, List<Integer> groupIds) {
|
2019-06-03 14:53:39 +08:00
|
|
|
|
logger.warn("Start to save IP,size:"+cfgs.size());
|
|
|
|
|
|
long start=System.currentTimeMillis();
|
|
|
|
|
|
SqlSessionFactory sqlSessionFactory=SpringContextHolder.getBean(SqlSessionFactory.class);
|
|
|
|
|
|
SqlSession batchSqlSession = null;
|
2019-06-19 16:15:21 +08:00
|
|
|
|
// 导入域配置 -> ①分组不存在,新增分组并返回serviceGroupId ②分组存在,获取serviceGroupId -> 数据入库 -> 更新分组状态 -> 判断是否配置下发
|
2019-06-03 14:53:39 +08:00
|
|
|
|
try{
|
2019-06-20 18:06:38 +08:00
|
|
|
|
int index = 0;
|
2019-06-10 18:31:52 +08:00
|
|
|
|
String ids = "";
|
2019-06-20 18:06:38 +08:00
|
|
|
|
List<CommonGroupInfo> insertGroupList = new ArrayList<CommonGroupInfo>();
|
2019-06-03 14:53:39 +08:00
|
|
|
|
batchSqlSession = sqlSessionFactory.openSession(ExecutorType.BATCH, false);
|
|
|
|
|
|
for(BaseIpCfg cfg:cfgs) {
|
|
|
|
|
|
IpCommCfg ipCommCfg=new IpCommCfg();
|
|
|
|
|
|
BeanUtils.copyProperties(cfg, ipCommCfg);
|
2019-06-14 17:12:41 +08:00
|
|
|
|
|
2019-06-20 18:06:38 +08:00
|
|
|
|
Integer groupId = commonGroupManageDao.getGroupIdByGroupName(ipCommCfg.getGroupName(), Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
if(groupId == null) { // 分组不存在,新增 UdFlag为1
|
|
|
|
|
|
groupId = groupIds.get(index);
|
|
|
|
|
|
index++;
|
|
|
|
|
|
|
|
|
|
|
|
CommonGroupInfo groupInfo = new CommonGroupInfo();
|
|
|
|
|
|
groupInfo.setCreatorId(ipCommCfg.getCreatorId());
|
|
|
|
|
|
groupInfo.setCreateTime(ipCommCfg.getCreateTime());
|
|
|
|
|
|
groupInfo.setGroupName(ipCommCfg.getGroupName());
|
|
|
|
|
|
groupInfo.setGroupType(Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
groupInfo.setServiceGroupId(groupId);
|
|
|
|
|
|
groupInfo.setUdFlag(1);
|
|
|
|
|
|
insertGroupList.add(groupInfo);
|
|
|
|
|
|
}else {
|
|
|
|
|
|
if(!ids.contains(groupId+"")) {
|
|
|
|
|
|
ids += ","+groupId;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-06-14 17:12:41 +08:00
|
|
|
|
|
2019-06-20 18:06:38 +08:00
|
|
|
|
ipCommCfg.setGroupId(groupId);
|
2019-06-03 14:53:39 +08:00
|
|
|
|
((IpCommGroupCfgDao) batchSqlSession.getMapper(IpCommGroupCfgDao.class)).insertForBatch(ipCommCfg);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
batchSqlSession.commit();
|
2019-06-20 18:06:38 +08:00
|
|
|
|
if(insertGroupList.size() > 0) {
|
|
|
|
|
|
commonGroupManageDao.insertBatch(insertGroupList);
|
|
|
|
|
|
}
|
2019-06-10 18:31:52 +08:00
|
|
|
|
|
2019-06-20 18:06:38 +08:00
|
|
|
|
if(StringUtils.isNotBlank(ids)) {
|
|
|
|
|
|
// 更新分组状态
|
|
|
|
|
|
String serviceGroupIds = ids.substring(1);
|
|
|
|
|
|
List<PolicyGroupInfo> policyGroupInfos = policyGroupInfoDao.findPolicyByServiceGroupInfoList(serviceGroupIds);
|
|
|
|
|
|
groupManageService.updateGroupStatus(policyGroupInfos, Constants.IP_OBJ_GROUP_TYPE);
|
|
|
|
|
|
// 判断是否配置下发
|
|
|
|
|
|
transObjGroupToMaat(policyGroupInfos);
|
|
|
|
|
|
}
|
2019-06-10 18:31:52 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}finally {
|
|
|
|
|
|
if(batchSqlSession != null){
|
|
|
|
|
|
batchSqlSession.close();
|
|
|
|
|
|
}
|
2019-06-10 18:31:52 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
long end=System.currentTimeMillis();
|
|
|
|
|
|
logger.warn("Save IP finish,cost:"+(end-start));
|
|
|
|
|
|
cfgs.clear();
|
|
|
|
|
|
cfgs=null;
|
|
|
|
|
|
}
|
2019-06-19 16:15:21 +08:00
|
|
|
|
|
2019-06-03 14:53:39 +08:00
|
|
|
|
}
|