作者 Kevin

6.20日提交,下一步完善收货人和发货人信息

正在显示 85 个修改的文件 包含 1680 行增加449 行删除
package com.agent.controller.agent;
import com.agent.controller.BasicController;
import com.agent.entity.agent.BasicAgentEntity;
import com.agent.service.agent.BasicAgentService;
import com.agent.service.system.RoleService;
import com.agent.util.HttpJsonMsg;
import com.agent.vo.ResponseModel;
import com.agent.vo.agent.UserVo;
import com.framework.core.Servlets;
import com.plugin.easyui.DataGrid;
import com.plugin.easyui.EasyPage;
import java.util.Map;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import org.apache.shiro.authz.annotation.RequiresRoles;
import org.hibernate.annotations.Source;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
... ... @@ -21,10 +13,14 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.util.List;
import java.util.Map;
import com.agent.controller.BasicController;
import com.agent.entity.agent.BasicAgentEntity;
import com.agent.service.agent.BasicAgentService;
import com.agent.util.HttpJsonMsg;
import com.agent.vo.ResponseModel;
import com.framework.core.Servlets;
import com.plugin.easyui.DataGrid;
import com.plugin.easyui.EasyPage;
/**
* Created by cohesion on 2017/3/29.
... ...
... ... @@ -850,7 +850,7 @@ public class ManifestController extends BasicController {
WaybillReceiptType type = oldType != null ? WaybillReceiptType.UPDATE : WaybillReceiptType.APPLY;
String stowagedate = request.getParameter("stowagedate");
manifest.setStowagedate(manifest.getStowagedate(stowagedate));
manifest.setStowagedate(ManifestEntity.getStowagedate(stowagedate));
// 保存
manifest.setIsdelete(1);
manifest.setResponse_code(String.valueOf(type.getValue()));
... ... @@ -868,21 +868,22 @@ public class ManifestController extends BasicController {
String ndlrxml = XmlUtil.convertToXml2(manifestService.sendNDLRXml(manifest), path);
String dlcfxml = XmlUtil.convertToXml2(manifestService.sendDLCFXml(manifest), path);
String slifxml = XmlUtil.convertToXml(FSXmlKit.sliXml(manifest));
System.out.println("===================ndlrxml===================");
System.out.println(ndlrxml);
System.out.println();
// System.err.println("===================ndlrxml===================");
// System.err.println(ndlrxml);
// System.err.println();
//
// System.err.println("===================dlcfxml===================");
// System.err.println(dlcfxml);
// System.err.println();
System.out.println("===================dlcfxml===================");
System.err.println(dlcfxml);
System.out.println();
System.out.println("===================slifxml===================");
System.err.println("===================slifxml===================");
System.err.println(slifxml);
System.out.println();
System.err.println();
new RedisSaveMessage().saveMessage(ndlrxml);
new RedisSaveMessage().saveMessage(dlcfxml);
new RedisSaveMessage().saveMessage(slifxml);
model.setStatus(200);
model.setMsg(HttpJsonMsg.SUCCESS);
}
... ... @@ -1065,13 +1066,13 @@ public class ManifestController extends BasicController {
model.setStatus(200);
model.setMsg(HttpJsonMsg.SUCCESS);
System.out.println("===================ndlrxml===================");
System.out.println(ndlrxml);
System.out.println();
System.out.println("===================dlcfxml===================");
System.err.println(dlcfxml);
System.out.println();
// System.out.println("===================ndlrxml===================");
// System.out.println(ndlrxml);
// System.out.println();
//
// System.out.println("===================dlcfxml===================");
// System.err.println(dlcfxml);
// System.out.println();
System.out.println("===================fhlfxml===================");
System.err.println(fhlfxml);
... ...
package com.agent.controller.agent;
import java.util.List;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import com.agent.entity.agent.ManifestEntity;
import com.agent.entity.agent.PreparesecondaryEntity;
import com.agent.entity.agent.WaybillReceiprtEntity;
import com.agent.service.agent.ManifestService;
import com.agent.service.agent.PreparesecondaryService;
import com.agent.service.agent.WaybillReceiptService;
import com.agent.vo.ResponseModel;
import tools.Tools;
/**
* Depiction:接收IMF服务获取的预配舱单的回执的报文字段,以便更新报文和运单状态
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月11日 上午10:29:03
*
*/
@Controller
@RequestMapping(value = "/receipt")
public class ReceiptController {
private static final Logger logger = LoggerFactory.getLogger(ReceiptController.class);
@Resource
private ManifestService manifestService;
@Resource
private PreparesecondaryService preparesecondaryService;
@Resource
private WaybillReceiptService receiptService;
@ResponseBody
@RequestMapping(value = "/a0608c4054662dd902e1314f7e450e3eaa81c114", method = { RequestMethod.GET })
public ResponseModel update(String waybillNo, String waybillNoSub, String sendTime, String response_code,
String response_text, HttpServletRequest reuqest) {
ResponseModel res = new ResponseModel();
WaybillReceiprtEntity wre = null;
if (StringUtils.isNoneBlank(waybillNo) && StringUtils.isBlank(waybillNoSub)) {
// 主单报文
List<ManifestEntity> list = manifestService.findByMawbNo(waybillNo);
if (list != null && list.size() > 0) {
ManifestEntity bean = list.get(0);
bean.setResponse_code(response_code);
bean.setResponse_text(response_text);
manifestService.save(bean);
wre = new WaybillReceiprtEntity();
wre.setCarrier(bean.getCarrier());
wre.setFlightdate(bean.getFlightdate());
wre.setFlightno(bean.getFlightno());
wre.setMessage_type("MT2201");
wre.setResponse_code(response_code);
wre.setResponse_text(response_text);
wre.setSendtime(sendTime);
wre.setWaybill_no(bean.getWaybillnomaster());
wre.setCreator(Tools.getUserEntity());
wre.setModifier(Tools.getUserEntity());
wre.setPiece(bean.getPreparetotalpiece());
wre.setWeight(bean.getPreparetotalweight());
receiptService.save(wre);
res.setStatus(200);
res.setMsg("操作成功");
} else {
res.setStatus(404);
res.setMsg("主单不存在");
}
} else if (StringUtils.isNoneBlank(waybillNo) && StringUtils.isNoneBlank(waybillNoSub)) {
// 分单报文
List<PreparesecondaryEntity> list = preparesecondaryService.findByMawbNo(waybillNoSub);
if (list != null && list.size() > 0) {
PreparesecondaryEntity bean = list.get(0);
bean.setResponse_code(response_code);
bean.setResponse_text(response_text);
preparesecondaryService.save(bean);
wre = new WaybillReceiprtEntity();
wre.setCarrier(bean.getCarrier());
wre.setFlightdate(bean.getFlightdate());
wre.setFlightno(bean.getFlightno());
wre.setMessage_type("MT2201");
wre.setResponse_code(response_code);
wre.setResponse_text(response_text);
wre.setSendtime(sendTime);
wre.setWaybill_no(bean.getWaybillnomaster());
wre.setSub_waybill_no(bean.getWaybillnosecondary());
wre.setCreator(Tools.getUserEntity());
wre.setModifier(Tools.getUserEntity());
wre.setPiece(bean.getPreparepiece());
wre.setWeight(bean.getPrepareweight());
receiptService.save(wre);
res.setStatus(200);
res.setMsg("操作成功");
} else {
res.setStatus(404);
res.setMsg("分单不存在");
}
} else {
// 主单号不能为空
res.setStatus(404);
res.setMsg("主单号不能为空");
return res;
}
return res;
}
}
... ...
... ... @@ -230,14 +230,15 @@
package com.agent.entity.agent;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import org.apache.commons.lang.StringUtils;
import com.agent.entity.BasicEntity;
/**
... ... @@ -793,27 +794,33 @@ public class ManifestEntity extends BasicEntity {
}
public void setStowagedate(Date stowagedate) {
// System.out.println(stowagedate);
this.stowagedate = stowagedate;
// this.stowagedate = new Date();
}
public static Date getStowagedate(String datestr) {
if (datestr == null)
return null;
String strFormat = "yyyyMMddHHmmss";
Calendar calendar = Calendar.getInstance();
String year = null;
String time = null;
if (datestr.indexOf(":") < 0) {
strFormat = "yyyy-MM-dd";
// 只有日期,没有时分秒等时间
year = datestr.split(" ")[0];
} else {
year = datestr.split(" ")[0];
time = datestr.split(" ")[1];
}
SimpleDateFormat sdf = new SimpleDateFormat(strFormat);
try {
return sdf.parse(datestr);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
String[] years = year.split("-");
calendar.set(Integer.parseInt(years[0]), Integer.parseInt(years[1]) - 1, Integer.parseInt(years[2]));
if (StringUtils.isNotBlank(time)) {
String[] times = time.split(":");
calendar.set(Integer.parseInt(years[0]), Integer.parseInt(years[1]) - 1, Integer.parseInt(years[2]),
Integer.parseInt(times[0]), Integer.parseInt(times[1]), Integer.parseInt(times[2]));
}
return null;
return calendar.getTime();
}
@Column(name = "STATUS")
... ...
... ... @@ -22,100 +22,94 @@ import com.agent.entity.system.UserEntity;
import com.agent.service.system.RoleService;
import com.agent.vo.MenuVo;
public class MyShiroController implements Filter{
public class MyShiroController implements Filter {
@Override
public void destroy() {
// TODO Auto-generated method stub
}
private String publicAction[] = {"/login", "/doLogin", "/manifest/app/send"};
private String crossDomain[] = {"/cross/","tracking/detail"};
// manifest/cross/grid.json
public boolean contains(String action, String acs[]){
for(int i = 0; i < acs.length; i ++)
{
if(action.contains(acs[i]))
private String publicAction[] = { "/login", "/doLogin", "/manifest/app/send",
"/receipt/a0608c4054662dd902e1314f7e450e3eaa81c114" };
private String crossDomain[] = { "/cross/", "tracking/detail" };
// manifest/cross/grid.json
public boolean contains(String action, String acs[]) {
for (int i = 0; i < acs.length; i++) {
if (action.contains(acs[i]))
return true;
}
return false;
}
//判断该url是否存在于系统内中的url(只拦截存在于系统中的菜单项)
public boolean isContaisMenu(String url){
List<FunctionEntity> list = (List<FunctionEntity>)SecurityUtils.getSubject().getSession().getAttribute("all_function");
for(int i = 0; i < list.size(); i ++)
{
if(url.equals(list.get(i).getUrl()))
// 判断该url是否存在于系统内中的url(只拦截存在于系统中的菜单项)
public boolean isContaisMenu(String url) {
List<FunctionEntity> list = (List<FunctionEntity>) SecurityUtils.getSubject().getSession()
.getAttribute("all_function");
for (int i = 0; i < list.size(); i++) {
if (url.equals(list.get(i).getUrl()))
return true;
}
return false;
}
@Override
public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain filterChain)
throws IOException, ServletException {
// TODO Auto-generated method stub
HttpServletRequest request = (HttpServletRequest) arg0;
HttpServletResponse response = (HttpServletResponse) arg1;
String address = "http://"+request.getServerName()+":"+request.getServerPort()+"/"+"statistics"+request.getServletPath();
String address = "http://" + request.getServerName() + ":" + request.getServerPort() + "/" + "statistics"
+ request.getServletPath();
String action = request.getServletPath();
System.out.println("action:"+action);
UserEntity ue = (UserEntity)SecurityUtils.getSubject().getSession().getAttribute("user");
if(contains(action, publicAction) || action.split("/")[1].equals("resource"))
{
System.out.println("action:" + action);
UserEntity ue = (UserEntity) SecurityUtils.getSubject().getSession().getAttribute("user");
if (contains(action, publicAction) || action.split("/")[1].equals("resource")) {
filterChain.doFilter(arg0, arg1);
return;
}
else if(contains(action, crossDomain)){
System.out.println("cross:"+action);
// response.setHeader("Access-Control-Allow-Origin", "*");
// response.setHeader("Access-Control-Allow-Methods", "POST");
// response.setHeader("Access-Control-Max-Age", "3600");
// response.setHeader("Access-Control-Allow-Headers", "x-requested-width,Authorization");
// response.setHeader("Access-Control-Allow-Credetials", "true");
} else if (contains(action, crossDomain)) {
System.out.println("cross:" + action);
// response.setHeader("Access-Control-Allow-Origin", "*");
// response.setHeader("Access-Control-Allow-Methods", "POST");
// response.setHeader("Access-Control-Max-Age", "3600");
// response.setHeader("Access-Control-Allow-Headers",
// "x-requested-width,Authorization");
// response.setHeader("Access-Control-Allow-Credetials", "true");
filterChain.doFilter(arg0, arg1);
return;
}
//未登录状态
if(ue == null)
{
// 未登录状态
if (ue == null) {
response.sendRedirect("/agent/login");
}
else
{
} else {
///
RoleEntity role = ue.getRole();
List<MenuVo> list = (List<MenuVo>) SecurityUtils.getSubject().getSession().getAttribute("permission");
if(isContaisMenu(action)) //判断用户要访问的url是否存在于系统中(只拦截系统中的url)
if (isContaisMenu(action)) // 判断用户要访问的url是否存在于系统中(只拦截系统中的url)
{
System.out.println("list count:"+list.size());
//获取当前角色在系统的中url权限列表
for(int i = 0; i < list.size(); i ++)
{
MenuVo pe = (MenuVo)list.get(i);
//System.out.println("current role list:"+pe.getFirstMenu().getUrl());
//用户访问的url存在于权限列表中,那么则直接访问
if(pe.getFirstMenu().getUrl().equals(action))
{
System.out.println("list count:" + list.size());
// 获取当前角色在系统的中url权限列表
for (int i = 0; i < list.size(); i++) {
MenuVo pe = (MenuVo) list.get(i);
// System.out.println("current role list:"+pe.getFirstMenu().getUrl());
// 用户访问的url存在于权限列表中,那么则直接访问
if (pe.getFirstMenu().getUrl().equals(action)) {
filterChain.doFilter(arg0, arg1);
return ;
return;
}
}
response.sendRedirect("/agent/unauthorized");
return;
} //用户访问的不是系统中的url
} // 用户访问的不是系统中的url
filterChain.doFilter(arg0, arg1);
}
}
@Override
public void init(FilterConfig arg0) throws ServletException {
// TODO Auto-generated method stub
}
}
... ...
package com.agent.imf.agent.redis;
import org.apache.commons.lang3.StringUtils;
import redis.clients.jedis.Jedis;
//缓存数据
public class RedisSaveMessage {
//创建 缓存服务器的地址ip
// 创建 缓存服务器的地址ip
Jedis jedis = new Jedis("10.50.3.71", 6379);
// Jedis jedis = new Jedis("192.168.0.253", 6379);
public class JEDIS{
// Jedis jedis = new Jedis("192.168.0.253", 6379);
public class JEDIS {
}
//存信息
public void saveMessage(String str){
jedis.lpush("task-queue", str);
// 存信息
public long saveMessage(String str) {
if (StringUtils.isEmpty(str)) {
return -1;
}
return jedis.lpush("task-queue", str);
}
}
//北环
// 北环
//
\ No newline at end of file
... ...
... ... @@ -308,7 +308,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
// 装载日期
ManifestLoadingLocationXml ml = new ManifestLoadingLocationXml();
ml.setId("CGO/4604");
ml.setLoadingdate(new SimpleDateFormat("yyyy-MM-dd hh:mm").format(manifest.getStowagedate()));
ml.setLoadingdate(new SimpleDateFormat("yyyy-MM-dd HH:mm").format(manifest.getStowagedate()));
mcs.setLoadinglocation(ml);
ManifestUnloadingLocationXml mu = new ManifestUnloadingLocationXml();
... ... @@ -331,7 +331,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
mcs.setProductname(manifest.getProductname());
// 装载日期与预配日期
mcs.setPreparetime(new SimpleDateFormat("yyyy-MM-dd hh:mm").format(manifest.getStowagedate()));
mcs.setPreparetime(new SimpleDateFormat("yyyy-MM-dd HH:mm").format(manifest.getStowagedate()));
mcs.setCustomscode(manifest.getCustomscode());
mcs.setAgentname(manifest.getAgentman());
mcs.setAgentCompany(manifest.getAgentcompany());
... ... @@ -340,8 +340,8 @@ public class ManifestService extends BasicService<ManifestEntity> {
mcs.setUnnumber(manifest.getUnnumber() != null ? manifest.getUnnumber() : "");
mcs.setCategory(manifest.getCategory() != null ? manifest.getCategory() : "");
ManifestConsigneeXml mcons = new ManifestConsigneeXml();
mcons.setName(manifest.getCo_name());
ManifestConsigneeXml consignee = new ManifestConsigneeXml();
consignee.setName(manifest.getSh_name());
ManifestAddressXml madd = new ManifestAddressXml();
madd.setLine(manifest.getSh_address());
... ... @@ -357,17 +357,17 @@ public class ManifestService extends BasicService<ManifestEntity> {
madd.setCnecusid(manifest.getCnecusid() != null ? manifest.getCnecusid() : "");
madd.setUnlodingcode(manifest.getUnlodingcode() != null ? manifest.getUnlodingcode() : "");
mcons.setAddress(madd);
mcs.setConsignee(mcons);
consignee.setAddress(madd);
mcs.setConsignee(consignee);
ManifestConsignorXml maci = new ManifestConsignorXml();
maci.setName(manifest.getSh_name());
ManifestConsignorXml consigor = new ManifestConsignorXml();
consigor.setName(manifest.getCo_name());
// 设置发货人货人信息
ManifestsAddressXml consignorXml = new ManifestsAddressXml();
consignorXml.setLine(manifest.getCo_address());
consignorXml.setCityname(manifest.getCo_city());
consignorXml.setCountrycode(manifest.getCo_country() != null ? manifest.getSh_country() : "");
consignorXml.setCountrycode(manifest.getCo_country() != null ? manifest.getCo_country() : "");
consignorXml.setZipcode(manifest.getCo_zipcode() != null ? manifest.getCo_zipcode() : "");
consignorXml.setSh_deltaname(manifest.getCo_deltaname() != null ? manifest.getCo_deltaname() : "");
consignorXml.setTelephone(manifest.getCo_telephone() != null ? manifest.getCo_telephone() : "");
... ... @@ -375,8 +375,8 @@ public class ManifestService extends BasicService<ManifestEntity> {
consignorXml.setShpcusid(manifest.getShpcusid() != null ? manifest.getShpcusid() : "");
consignorXml.setShpaeo(manifest.getShpaeo() != null ? manifest.getShpaeo() : "");
maci.setAddress(consignorXml);
mcs.setConsignor(maci);
consigor.setAddress(consignorXml);
mcs.setConsignor(consigor);
dec.setConsignment(mcs);
body.setDeclaration(dec);
... ... @@ -485,7 +485,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
ManifestLoadingLocationXml ml = new ManifestLoadingLocationXml();
ml.setId("CGO/4604");
// ml.setLoadingdate(Constant.dateTimeFormatnumber.format(pre.getStowagedate()));
ml.setLoadingdate(new SimpleDateFormat("yyyy-MM-dd hh:mm").format(pre.getStowagedate()));
ml.setLoadingdate(new SimpleDateFormat("yyyy-MM-dd HH:mm").format(pre.getStowagedate()));
mcs.setLoadinglocation(ml);
ManifestUnloadingLocationXml mu = new ManifestUnloadingLocationXml();
... ... @@ -508,7 +508,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
mcs.setProductname(pre.getProductname());
// mcs.setPreparetime(Constant.dateTimeFormatnumber.format(pre.getStowagedate()));
mcs.setPreparetime(new SimpleDateFormat("yyyy-MM-dd hh:mm").format(pre.getStowagedate()));
mcs.setPreparetime(new SimpleDateFormat("yyyy-MM-dd HH:mm").format(pre.getStowagedate()));
mcs.setCustomscode(pre.getCustomscode());
mcs.setAgentname(pre.getAgentman());
mcs.setAgentCompany(pre.getAgentcompany());
... ... @@ -917,7 +917,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
// 装载日期
DeclareLoadingLocationXml ml = new DeclareLoadingLocationXml();
ml.setId("CGO/4604");
ml.setLoadingDate(new SimpleDateFormat("yyyy-MM-dd hh:mm")
ml.setLoadingDate(new SimpleDateFormat("yyyy-MM-dd HH:mm")
.format(isManifest ? me.getStowagedate() : pe.getStowagedate()));
consignment.setLoadingLocation(ml);
... ...
... ... @@ -16,6 +16,7 @@ import com.agent.entity.agent.WaybillReceiprtEntity;
import com.agent.entity.agent.WaybillReceiptType;
import com.agent.repository.agent.WaybillReceiptRepository;
import com.agent.service.BasicService;
import com.agent.smb.RemoteFileKit;
import com.agent.xml.common.XmlUtil;
import com.agent.xml.manifestdeclare.DeclareXmlBody;
import com.framework.util.CustomMessageKit;
... ... @@ -108,17 +109,15 @@ public class WaybillReceiptService extends BasicService<WaybillReceiprtEntity> {
wre.setWaybill_no(manifest.getWaybillnomaster());
wre.setCreator(Tools.getUserEntity());
wre.setModifier(Tools.getUserEntity());
wre.setPiece(manifest.getDe_number());
wre.setWeight(manifest.getDe_weight());
wre.setPiece(manifest.getPreparetotalpiece());
wre.setWeight(manifest.getPreparetotalweight());
save(wre);
ManifestService mbs = new ManifestService();
DeclareXmlBody dpxb = mbs.generateWaybillReceiptXml(manifest, type, null);
String dpxbPath = CustomMessageKit.getMessagePath();
XmlUtil.convertToXml2(dpxb, dpxbPath);
// System.err.println("==================manifest====================");
// System.err.println(dpxbXml);
// System.err.println("");
RemoteFileKit.putFile(dpxbPath);
}
}
... ... @@ -150,6 +149,7 @@ public class WaybillReceiptService extends BasicService<WaybillReceiprtEntity> {
DeclareXmlBody dpxb = mbs.generateWaybillReceiptXml(prepare, type, null);
String dpxbPath = CustomMessageKit.getMessagePath();
XmlUtil.convertToXml2(dpxb, dpxbPath);
RemoteFileKit.putFile(dpxbPath);
}else {
System.err.println("prepare is null");
}
... ...
package com.agent.smb;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import com.framework.util.CustomMessageKit;
import jcifs.smb.SmbFile;
import jcifs.smb.SmbFileOutputStream;
/**
* Depiction: 网络共享目录文件读写
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月11日 下午2:51:29
*
*/
public class RemoteFileKit {
private static final String REMOTE_DIR = CustomMessageKit.getMessageSmbRemoteDir();
public RemoteFileKit() {
}
/**
*
* @param localFilePath
* 本地文件路径
*/
public static void putFile(String localFilePath) {
InputStream in = null;
OutputStream out = null;
try {
File localFile = new File(localFilePath);
String fileName = localFile.getName();
SmbFile remoteFile = new SmbFile(REMOTE_DIR + "/" + fileName);
in = new BufferedInputStream(new FileInputStream(localFile));
out = new BufferedOutputStream(new SmbFileOutputStream(remoteFile));
byte[] buffer = new byte[1024];
while (in.read(buffer) != -1) {
out.write(buffer);
buffer = new byte[1024];
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (out != null) {
out.close();
}
if (in != null) {
in.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
... ...
... ... @@ -95,8 +95,6 @@ public class XmlUtil {
try {
in.write(bt, 0, bt.length);
in.close();
// boolean success=true;
// System.out.println("写入文件成功");
} catch (IOException e) {
e.printStackTrace();
}
... ...
package com.agent.xml.fhlsli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月14日 下午6:22:03
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class Dest {
@XmlValue
private String dest;
@XmlAttribute(name = "SITA", required = false)
private String sita;
public Dest() {
}
public Dest(String dest) {
this.dest = dest;
}
public String getDest() {
return dest;
}
public void setDest(String dest) {
this.dest = dest;
}
public String getSita() {
return sita;
}
public void setSita(String sita) {
this.sita = sita;
}
}
... ...
package com.agent.xml.fhlsli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月14日 下午6:22:03
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class Dests {
@XmlElement(name = "DEST", required = false)
private Dest dest;
public Dests() {
}
public Dest getDest() {
return dest;
}
public void setDest(Dest dest) {
this.dest = dest;
}
}
... ...
... ... @@ -10,12 +10,15 @@ import com.agent.entity.agent.PreparesecondaryEntity;
import com.agent.xml.fhlsli.common.ApplicableFreightRateServiceCharge;
import com.agent.xml.fhlsli.common.AssociatedParty;
import com.agent.xml.fhlsli.common.AssociatedReferenceDocument;
import com.agent.xml.fhlsli.common.ChargeableWeightMeasure;
import com.agent.xml.fhlsli.common.ConsigneeParty;
import com.agent.xml.fhlsli.common.ConsignorParty;
import com.agent.xml.fhlsli.common.FinalDestinationLocation;
import com.agent.xml.fhlsli.common.FreightForwarderParty;
import com.agent.xml.fhlsli.common.GrossWeightMeasure;
import com.agent.xml.fhlsli.common.HandlingInstructions;
import com.agent.xml.fhlsli.common.IncludedCustomsNote;
import com.agent.xml.fhlsli.common.IncludedTareGrossWeightMeasure;
import com.agent.xml.fhlsli.common.OriginLocation;
import com.agent.xml.fhlsli.common.PostalStructuredAddress;
import com.agent.xml.fhlsli.common.SpecifiedLogisticsTransportMovement;
... ... @@ -30,7 +33,9 @@ import com.agent.xml.fhlsli.fhl.IncludedHouseConsignment;
import com.agent.xml.fhlsli.fhl.IncludedHouseConsignmentItem;
import com.agent.xml.fhlsli.fhl.OperatingParty;
import com.agent.xml.fhlsli.fhl.OriginCountry;
import com.agent.xml.fhlsli.fhl.TareWeightMeasure;
import com.agent.xml.fhlsli.fhl.TransportContractDocument;
import com.agent.xml.fhlsli.fhl.WeightTotalChargeAmount;
import com.agent.xml.fhlsli.sli.EventTime;
import com.agent.xml.fhlsli.sli.IncludedMasterConsignmentItem;
import com.agent.xml.fhlsli.sli.ReportedStatus;
... ... @@ -58,27 +63,42 @@ public class FSXmlKit {
*
* @param me
*/
public static SliMsg sliXml(ManifestEntity me) {
SliMsg msg = new SliMsg();
public static SliCcs sliXml(ManifestEntity me) {
SliCcs msg = new SliCcs();
Meta meta = new Meta();
meta.setSndr("NDLR");
meta.setSeqn(me.getWaybillnomaster());
meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
meta.setType("SLI");
meta.setStype("SLI");
meta.setStyp("SLI");
meta.setRcvr("");
meta.setAck("N");
meta.setVer("01");
Dests dests = new Dests();
Dest dest = new Dest();
dest.setSita("");
dest.setDest("");
dests.setDest(dest);
meta.setDests(dests);
msg.setMeta(meta);
SliDflt dflt = new SliDflt();
SliMain dflt = new SliMain();
SliMasterConsignment sliMasterConsignment = new SliMasterConsignment();
sliMasterConsignment.setID(me.getWaybillnomaster());
sliMasterConsignment.setNilCustomsValueIndicator("true");
sliMasterConsignment.setNilInsuranceValueIndicator("true");
sliMasterConsignment.setDeclaredValueForCarriageAmount("");
sliMasterConsignment.setInsuranceValueAmount("");
sliMasterConsignment.setTotalChargePrepaidIndicator("true");
sliMasterConsignment.setTotalDisbursementPrepaidIndicator("true");
sliMasterConsignment.setIncludedTareGrossWeightMeasure(me.getTotalweight());
IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure = new IncludedTareGrossWeightMeasure();
IncludedTareGrossWeightMeasure.setIncludedTareGrossWeightMeasure(me.getTotalweight());
IncludedTareGrossWeightMeasure.setUnitCode("KGM");
sliMasterConsignment.setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure);
sliMasterConsignment.setTotalPieceQuantity(me.getTotalpiece());
ConsignorParty consignorParty = new ConsignorParty();
... ... @@ -119,7 +139,8 @@ public class FSXmlKit {
sliMasterConsignment.setFinalDestinationLocation(destinationLocation);
SpecifiedLogisticsTransportMovement transport = new SpecifiedLogisticsTransportMovement();
transport.setStageCode(me.getCarrier() + me.getFlightno() + "/" + me.getFlightdate());
transport.setStageCode(
me.getCarrier() + me.getFlightno() + "/" + Constant.dateFormat.format(me.getFlightdate()));
sliMasterConsignment.setSpecifiedLogisticsTransportMovement(transport);
HandlingInstructions handlingInstructions = new HandlingInstructions();
... ... @@ -144,7 +165,10 @@ public class FSXmlKit {
applicableFreightRateServiceCharge.setAppliedAmount("");
applicableFreightRateServiceCharge.setAppliedRate("");
applicableFreightRateServiceCharge.setCategoryCode("");
applicableFreightRateServiceCharge.setChargeableWeightMeasure(me.getDe_chweight());
ChargeableWeightMeasure ChargeableWeightMeasure = new ChargeableWeightMeasure();
ChargeableWeightMeasure.setChargeableWeightMeasure(me.getDe_chweight());
ChargeableWeightMeasure.setUnitCode("KGM");
applicableFreightRateServiceCharge.setChargeableWeightMeasure(ChargeableWeightMeasure);
applicableFreightRateServiceCharge.setCommodityItemID("");
applicableFreightRateServiceCharge.setAppliedRate("");
applicableFreightRateServiceCharge.setAppliedAmount("");
... ... @@ -163,7 +187,7 @@ public class FSXmlKit {
sliMasterConsignment.setReportedStatus(reportedStatus);
dflt.setSliMasterConsignment(sliMasterConsignment);
msg.setDFLT(dflt);
msg.setMain(dflt);
// String xml = XmlUtil.convertToXml(msg);
// System.err.println();
... ... @@ -177,22 +201,33 @@ public class FSXmlKit {
*
* @param pe
*/
public static FhlMsg fhlXml(PreparesecondaryEntity pe) {
FhlMsg msg = new FhlMsg();
public static FhlCcs fhlXml(PreparesecondaryEntity pe) {
FhlCcs msg = new FhlCcs();
Meta meta = new Meta();
meta.setSndr("NDLR");
meta.setSeqn(pe.getWaybillnomaster());
meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
meta.setType("FHL");
meta.setStype("FHL");
meta.setStyp("FHL");
meta.setRcvr("");
meta.setAck("N");
meta.setVer("01");
Dests dests = new Dests();
Dest dest = new Dest();
dest.setSita("");
dest.setDest("");
dests.setDest(dest);
meta.setDests(dests);
msg.setMeta(meta);
FhlDflt dflt = new FhlDflt();
FhlMain dflt = new FhlMain();
HouseWaybill houseWaybill = new HouseWaybill();
FhlMasterConsignment fhlMasterConsignment = new FhlMasterConsignment();
fhlMasterConsignment.setIncludedTareGrossWeightMeasure(pe.getTotalweight());
fhlMasterConsignment.setTotalPieceQuantity(pe.getTotalpiece());
TransportContractDocument transportContractDocumentMaster = new TransportContractDocument();
transportContractDocumentMaster.setID(pe.getWaybillnomaster());
... ... @@ -212,15 +247,25 @@ public class FSXmlKit {
includedHouseConsignment.setTransportContractDocument(transportContractDocumentSub);
ConsolidationInformation consolidationInformation = new ConsolidationInformation();
consolidationInformation.setGrossWeightMeasure(pe.getPrepareweight());
GrossWeightMeasure GrossWeightMeasure = new GrossWeightMeasure();
GrossWeightMeasure.setGrossWeightMeasure(pe.getPrepareweight());
GrossWeightMeasure.setUnitCode("KGM");
consolidationInformation.setGrossWeightMeasure(GrossWeightMeasure);
consolidationInformation.setPieceQuantity(pe.getPreparepiece());
includedHouseConsignment.setConsolidationInformation(consolidationInformation);
includedHouseConsignment.setDeclaredValueForCarriageAmount("");
includedHouseConsignment.setInsuranceValueAmount("");
includedHouseConsignment.setTotalChargePrepaidIndicator("");
includedHouseConsignment.setWeightTotalChargeAmount(pe.getDe_chweight());
WeightTotalChargeAmount WeightTotalChargeAmount = new WeightTotalChargeAmount();
WeightTotalChargeAmount.setChargeableWeightMeasure(pe.getDe_chweight());
WeightTotalChargeAmount.setUnitCode("KGM");
includedHouseConsignment.setWeightTotalChargeAmount(WeightTotalChargeAmount);
includedHouseConsignment.setTotalDisbursementPrepaidIndicator("");
includedHouseConsignment.setIncludedTareGrossWeightMeasure("");
IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure = new IncludedTareGrossWeightMeasure();
IncludedTareGrossWeightMeasure.setIncludedTareGrossWeightMeasure("");
IncludedTareGrossWeightMeasure.setUnitCode("KGM");
includedHouseConsignment.setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure);
includedHouseConsignment.setTotalPieceQuantity(pe.getPreparepiece());
includedHouseConsignment.setSummaryDescription(pe.getProductname());
... ... @@ -295,10 +340,17 @@ public class FSXmlKit {
IncludedHouseConsignmentItem includedHouseConsignmentItem = new IncludedHouseConsignmentItem();
includedHouseConsignmentItem.setSequenceNumeric("");
includedHouseConsignmentItem.setTypeCode("");
includedHouseConsignmentItem.setGrossWeightMeasure(pe.getPrepareweight());
GrossWeightMeasure GrossWeightMeasure_ = new GrossWeightMeasure();
GrossWeightMeasure_.setGrossWeightMeasure(pe.getPrepareweight());
GrossWeightMeasure_.setUnitCode("KGM");
includedHouseConsignmentItem.setGrossWeightMeasure(GrossWeightMeasure_);
includedHouseConsignmentItem.setGrossVolumeMeasure(pe.getDe_volume());
includedHouseConsignmentItem.setPieceQuantity(pe.getPreparepiece());
includedHouseConsignmentItem.setTareWeightMeasure(pe.getTotalweight());
TareWeightMeasure TareWeightMeasure = new TareWeightMeasure();
TareWeightMeasure.setTareWeightMeasure(pe.getTotalweight());
TareWeightMeasure.setUnitCode("KGM");
includedHouseConsignmentItem.setTareWeightMeasure(TareWeightMeasure);
OriginCountry originCountry = new OriginCountry();
originCountry.setID(pe.getCo_country());
... ... @@ -318,7 +370,10 @@ public class FSXmlKit {
applicableFreightRateServiceCharge.setAppliedAmount("");
applicableFreightRateServiceCharge.setAppliedRate("");
applicableFreightRateServiceCharge.setCategoryCode("");
applicableFreightRateServiceCharge.setChargeableWeightMeasure(pe.getDe_chweight());
ChargeableWeightMeasure ChargeableWeightMeasure = new ChargeableWeightMeasure();
ChargeableWeightMeasure.setChargeableWeightMeasure(pe.getDe_chweight());
ChargeableWeightMeasure.setUnitCode("KGM");
applicableFreightRateServiceCharge.setChargeableWeightMeasure(ChargeableWeightMeasure);
applicableFreightRateServiceCharge.setCommodityItemID("");
applicableFreightRateServiceCharge.setAppliedRate("");
applicableFreightRateServiceCharge.setAppliedAmount("");
... ... @@ -338,7 +393,7 @@ public class FSXmlKit {
houseWaybill.setMasterConsignment(fhlMasterConsignment);
dflt.setHouseWaybill(houseWaybill);
msg.setDFLT(dflt);
msg.setMain(dflt);
// String xml = XmlUtil.convertToXml(msg);
// System.err.println();
... ...
... ... @@ -18,21 +18,21 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "MSG")
public class FhlMsg {
@XmlRootElement(name = "CCS")
public class FhlCcs {
@XmlElement(name = "META", required = false)
private Meta meta;
@XmlElement(name = "DFLT", required = false)
private FhlDflt dflt;
@XmlElement(name = "MAIN", required = false)
private FhlMain main;
public FhlMsg() {
public FhlCcs() {
}
public FhlMsg(Meta meta, FhlDflt dflt) {
public FhlCcs(Meta meta, FhlMain main) {
super();
this.meta = meta;
this.dflt = dflt;
this.main = main;
}
public Meta getMeta() {
... ... @@ -43,12 +43,12 @@ public class FhlMsg {
this.meta = meta;
}
public FhlDflt getDFLT() {
return dflt;
public FhlMain getMain() {
return main;
}
public void setDFLT(FhlDflt dflt) {
this.dflt = dflt;
public void setMain(FhlMain main) {
this.main = main;
}
}
... ...
... ... @@ -19,12 +19,12 @@ import com.agent.xml.fhlsli.fhl.HouseWaybill;
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class FhlDflt {
public class FhlMain {
@XmlElement(name = "HouseWaybill", required = false)
private HouseWaybill houseWaybill;
public FhlDflt() {
public FhlMain() {
}
public HouseWaybill getHouseWaybill() {
... ...
... ... @@ -26,12 +26,16 @@ public class Meta {
private String dttm;
@XmlElement(name = "TYPE", required = false)
private String type;
@XmlElement(name = "STYPE", required = false)
private String stype;
@XmlElement(name = "STYP", required = false)
private String styp;
@XmlElement(name = "RCVR", required = false)
private String rcvr;
@XmlElement(name = "ACK", required = false)
private String ack;
@XmlElement(name = "VER", required = false)
private String ver;
@XmlElement(name = "DESTS", required = false)
private Dests dests;
public Meta() {
}
... ... @@ -68,14 +72,6 @@ public class Meta {
this.type = type;
}
public String getStype() {
return stype;
}
public void setStype(String stype) {
this.stype = stype;
}
public String getStyp() {
return styp;
}
... ... @@ -92,4 +88,28 @@ public class Meta {
this.rcvr = rcvr;
}
public String getAck() {
return ack;
}
public void setAck(String ack) {
this.ack = ack;
}
public String getVer() {
return ver;
}
public void setVer(String ver) {
this.ver = ver;
}
public Dests getDests() {
return dests;
}
public void setDests(Dests dests) {
this.dests = dests;
}
}
... ...
... ... @@ -18,21 +18,21 @@ import javax.xml.bind.annotation.XmlType;
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "MSG")
public class SliMsg {
@XmlRootElement(name = "CCS")
public class SliCcs {
@XmlElement(name = "META", required = false)
private Meta meta;
@XmlElement(name = "DFLT", required = false)
private SliDflt dflt;
@XmlElement(name = "MAIN", required = false)
private SliMain main;
public SliMsg() {
public SliCcs() {
}
public SliMsg(Meta meta, SliDflt dflt) {
public SliCcs(Meta meta, SliMain main) {
super();
this.meta = meta;
this.dflt = dflt;
this.main = main;
}
public Meta getMeta() {
... ... @@ -43,12 +43,12 @@ public class SliMsg {
this.meta = meta;
}
public SliDflt getDFLT() {
return dflt;
public SliMain getMain() {
return main;
}
public void setDFLT(SliDflt dflt) {
this.dflt = dflt;
public void setMain(SliMain main) {
this.main = main;
}
}
... ...
... ... @@ -19,12 +19,12 @@ import com.agent.xml.fhlsli.sli.SliMasterConsignment;
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SliDflt {
public class SliMain {
@XmlElement(name = "MasterConsignment", required = false)
private SliMasterConsignment sliMasterConsignment;
public SliDflt() {
public SliMain() {
}
public SliMasterConsignment getSliMasterConsignment() {
... ...
package com.agent.xml.fhlsli;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import com.agent.entity.Constant;
import com.agent.xml.common.XmlUtil;
import com.agent.xml.fhlsli.fhl.HouseWaybill;
/**
* Depiction:
... ... @@ -20,26 +22,35 @@ public class Test {
}
public static void main(String[] args) {
// FhlMsg ccs = new FhlMsg();
//
// Meta meta = new Meta();
// meta.setSndr("NDLR");
// meta.setSeqn("4565432567");
// meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
// meta.setType("SLI");
// meta.setStype("SLI");
// meta.setRcvr("");
// ccs.setMeta(meta);
//
// FhlDflt main = new FhlDflt();
// HouseWaybill houseWaybill = new HouseWaybill();
// main.setHouseWaybill(houseWaybill);
// ccs.setDFLT(main);
//
// String xml = XmlUtil.convertToXml(ccs);
// System.err.println();
SimpleDateFormat df1 = new SimpleDateFormat ("yyyy-MM-dd'T'HH:mm:ssXXX", Locale.CHINA);
System.err.println(df1.format(new Date()));
FhlCcs ccs = new FhlCcs();
Meta meta = new Meta();
meta.setSndr("NDLR");
meta.setSeqn("4565432567");
meta.setDttm(Constant.dateTimeFormatnumber.format(new Date()));
meta.setType("SLI");
meta.setStyp("SLI");
meta.setRcvr("");
meta.setAck("N");
meta.setVer("01");
Dests dests = new Dests();
Dest dest = new Dest();
dest.setSita("111111111");
dest.setDest("kkkkkkkk");
dests.setDest(dest);
meta.setDests(dests);
ccs.setMeta(meta);
FhlMain main = new FhlMain();
HouseWaybill houseWaybill = new HouseWaybill();
main.setHouseWaybill(houseWaybill);
ccs.setMain(main);
String xml = XmlUtil.convertToXml(ccs);
System.err.println();
System.err.println(xml);
}
}
... ...
... ... @@ -3,18 +3,30 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableFreightRateServiceCharge {
@XmlElement(name = "CategoryCode",required = false)
private String CategoryCode;
@XmlElement(name = "CommodityItemID",required = false)
private String CommodityItemID;
private String ChargeableWeightMeasure;
@XmlElement(name = "ChargeableWeightMeasure",required = false)
private ChargeableWeightMeasure ChargeableWeightMeasure;
@XmlElement(name = "AppliedRate",required = false)
private String AppliedRate;
@XmlElement(name = "AppliedAmount",required = false)
private String AppliedAmount;
public void setCategoryCode(String CategoryCode) {
... ... @@ -33,11 +45,11 @@ public class ApplicableFreightRateServiceCharge {
return CommodityItemID;
}
public void setChargeableWeightMeasure(String ChargeableWeightMeasure) {
public void setChargeableWeightMeasure(ChargeableWeightMeasure ChargeableWeightMeasure) {
this.ChargeableWeightMeasure = ChargeableWeightMeasure;
}
public String getChargeableWeightMeasure() {
public ChargeableWeightMeasure getChargeableWeightMeasure() {
return ChargeableWeightMeasure;
}
... ...
... ... @@ -3,15 +3,23 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ArrivalEvent {
@XmlElement(name = "ScheduledOccurrenceDateTime",required = false)
private String ScheduledOccurrenceDateTime;
@XmlElement(name = "OccurrenceArrivalLocation",required = false)
private OccurrenceArrivalLocation OccurrenceArrivalLocation;
public void setScheduledOccurrenceDateTime(String ScheduledOccurrenceDateTime) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
/**
... ... @@ -11,15 +16,25 @@ import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AssociatedParty {
@XmlElement(name = "PrimaryID",required = false)
private String PrimaryID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "LegalID",required = false)
private String LegalID;
@XmlElement(name = "RoleCode",required = false)
private String RoleCode;
@XmlElement(name = "Role",required = false)
private String Role;
@XmlElement(name = "PostalStructuredAddress",required = false)
private PostalStructuredAddress PostalStructuredAddress;
@XmlElement(name = "DefinedTradeContact",required = false)
private DefinedTradeContact DefinedTradeContact;
@XmlElement(name = "SpecifiedTaxRegistration",required = false)
private SpecifiedTaxRegistration SpecifiedTaxRegistration;
public void setPrimaryID(String PrimaryID) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AssociatedReferenceDocument {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "IssueDateTime",required = false)
private String IssueDateTime;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
@XmlElement(name = "Name",required = false)
private String Name;
public void setID(String ID) {
... ...
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月15日 上午11:41:29
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ChargeableWeightMeasure {
@XmlValue
private String ChargeableWeightMeasure;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public ChargeableWeightMeasure() {
}
public String getChargeableWeightMeasure() {
return ChargeableWeightMeasure;
}
public void setChargeableWeightMeasure(String chargeableWeightMeasure) {
ChargeableWeightMeasure = chargeableWeightMeasure;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
/**
... ... @@ -11,14 +16,23 @@ import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ConsigneeParty {
@XmlElement(name = "PrimaryID",required = false)
private String PrimaryID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "LegalID",required = false)
private String LegalID;
@XmlElement(name = "AccountID",required = false)
private String AccountID;
@XmlElement(name = "PostalStructuredAddress",required = false)
private PostalStructuredAddress PostalStructuredAddress;
@XmlElement(name = "DefinedTradeContact",required = false)
private DefinedTradeContact DefinedTradeContact;
@XmlElement(name = "SpecifiedTaxRegistration",required = false)
private SpecifiedTaxRegistration SpecifiedTaxRegistration;
public void setPrimaryID(String PrimaryID) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
/**
... ... @@ -11,15 +16,25 @@ import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ConsignorParty {
@XmlElement(name = "PrimaryID",required = false)
private String PrimaryID;
@XmlElement(name = "AdditionalID",required = false)
private String AdditionalID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "LegalID",required = false)
private String LegalID;
@XmlElement(name = "AccountID",required = false)
private String AccountID;
@XmlElement(name = "PostalStructuredAddress",required = false)
private PostalStructuredAddress PostalStructuredAddress;
@XmlElement(name = "DefinedTradeContact",required = false)
private DefinedTradeContact DefinedTradeContact;
@XmlElement(name = "DefinedTradeContact",required = false)
private SpecifiedTaxRegistration SpecifiedTaxRegistration;
public void setPrimaryID(String PrimaryID) {
... ...
... ... @@ -3,19 +3,32 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class DefinedTradeContact {
@XmlElement(name = "PersonName",required = false)
private String PersonName;
@XmlElement(name = "DepartmentName",required = false)
private String DepartmentName;
@XmlElement(name = "DirectTelephoneCommunication",required = false)
private DirectTelephoneCommunication DirectTelephoneCommunication;
@XmlElement(name = "FaxCommunication",required = false)
private FaxCommunication FaxCommunication;
@XmlElement(name = "URIEmailCommunication",required = false)
private URIEmailCommunication URIEmailCommunication;
@XmlElement(name = "TelexCommunication",required = false)
private TelexCommunication TelexCommunication;
public void setPersonName(String PersonName) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class DepartureEvent {
@XmlElement(name = "ScheduledOccurrenceDateTime",required = false)
private String ScheduledOccurrenceDateTime;
@XmlElement(name = "OccurrenceDepartureLocation",required = false)
private OccurrenceDepartureLocation OccurrenceDepartureLocation;
public void setScheduledOccurrenceDateTime(String ScheduledOccurrenceDateTime) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class DirectTelephoneCommunication {
@XmlElement(name = "CompleteNumber",required = false)
private String CompleteNumber;
public void setCompleteNumber(String CompleteNumber) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class FaxCommunication {
@XmlElement(name = "CompleteNumber",required = false)
private String CompleteNumber;
public void setCompleteNumber(String CompleteNumber) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class FinalDestinationLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
public void setID(String ID) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
/**
... ... @@ -11,14 +16,23 @@ import com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class FreightForwarderParty {
@XmlElement(name = "PrimaryID",required = false)
private String PrimaryID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "LegalID",required = false)
private String LegalID;
@XmlElement(name = "AccountID",required = false)
private String AccountID;
@XmlElement(name = "PostalStructuredAddress",required = false)
private PostalStructuredAddress PostalStructuredAddress;
@XmlElement(name = "DefinedTradeContact",required = false)
private DefinedTradeContact DefinedTradeContact;
@XmlElement(name = "SpecifiedTaxRegistration",required = false)
private SpecifiedTaxRegistration SpecifiedTaxRegistration;
public void setPrimaryID(String PrimaryID) {
... ...
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class GrossWeightMeasure {
@XmlValue
private String GrossWeightMeasure;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public GrossWeightMeasure() {
}
public String getGrossWeightMeasure() {
return GrossWeightMeasure;
}
public void setGrossWeightMeasure(String GrossWeightMeasure) {
this.GrossWeightMeasure = GrossWeightMeasure;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class HandlingInstructions {
@XmlElement(name = "Description",required = false)
private String Description;
@XmlElement(name = "DescriptionCode",required = false)
private String DescriptionCode;
public void setDescription(String Description) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedCustomsNote {
@XmlElement(name = "ContentCode",required = false)
private String ContentCode;
@XmlElement(name = "Content",required = false)
private String Content;
@XmlElement(name = "SubjectCode",required = false)
private String SubjectCode;
@XmlElement(name = "CountryID",required = false)
private String CountryID;
public void setContentCode(String ContentCode) {
... ...
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedTareGrossWeightMeasure {
@XmlValue
private String IncludedTareGrossWeightMeasure;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public IncludedTareGrossWeightMeasure() {
}
public String getIncludedTareGrossWeightMeasure() {
return IncludedTareGrossWeightMeasure;
}
public void setIncludedTareGrossWeightMeasure(String includedTareGrossWeightMeasure) {
IncludedTareGrossWeightMeasure = includedTareGrossWeightMeasure;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class LinearSpatialDimension {
@XmlElement(name = "Description",required = false)
private String Description;
@XmlElement(name = "WidthMeasure",required = false)
private String WidthMeasure;
@XmlElement(name = "LengthMeasure",required = false)
private String LengthMeasure;
@XmlElement(name = "HeightMeasure",required = false)
private String HeightMeasure;
public void setDescription(String Description) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:41:30
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class NatureIdentificationTransportCargo {
@XmlElement(name = "Identification",required = false)
private String Identification;
@XmlElement(name = "ExtraIdentification",required = false)
private String ExtraIdentification;
public void setIdentification(String Identification) {
... ...
... ... @@ -3,16 +3,26 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class OccurrenceArrivalLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
public void setID(String ID) {
... ...
... ... @@ -3,16 +3,26 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class OccurrenceDepartureLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
public void setID(String ID) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class OriginLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
public void setID(String ID) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.fhl.SpecifiedAddressLocation;
/**
... ... @@ -11,17 +16,29 @@ import com.agent.xml.fhlsli.fhl.SpecifiedAddressLocation;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class PostalStructuredAddress {
@XmlElement(name = "PostcodeCode",required = false)
private String PostcodeCode;
@XmlElement(name = "StreetName",required = false)
private String StreetName;
@XmlElement(name = "CityName",required = false)
private String CityName;
@XmlElement(name = "CountryID",required = false)
private String CountryID;
@XmlElement(name = "CountryName",required = false)
private String CountryName;
@XmlElement(name = "CountrySubDivisionName",required = false)
private String CountrySubDivisionName;
@XmlElement(name = "PostOfficeBox",required = false)
private String PostOfficeBox;
@XmlElement(name = "CityID",required = false)
private String CityID;
@XmlElement(name = "CountrySubDivisionID",required = false)
private String CountrySubDivisionID;
@XmlElement(name = "SpecifiedAddressLocation",required = false)
private SpecifiedAddressLocation SpecifiedAddressLocation;
public void setPostcodeCode(String PostcodeCode) {
... ...
... ... @@ -3,21 +3,36 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedLogisticsTransportMovement {
@XmlElement(name = "StageCode",required = false)
private String StageCode;
@XmlElement(name = "ModeCode",required = false)
private String ModeCode;
@XmlElement(name = "Mode",required = false)
private String Mode;
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "SequenceNumeric",required = false)
private String SequenceNumeric;
@XmlElement(name = "UsedLogisticsTransportMeans",required = false)
private UsedLogisticsTransportMeans UsedLogisticsTransportMeans;
@XmlElement(name = "ArrivalEvent",required = false)
private ArrivalEvent ArrivalEvent;
@XmlElement(name = "DepartureEvent",required = false)
private DepartureEvent DepartureEvent;
public void setStageCode(String StageCode) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class TelexCommunication {
@XmlElement(name = "CompleteNumber",required = false)
private String CompleteNumber;
public void setCompleteNumber(String CompleteNumber) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class TransportLogisticsPackage {
@XmlElement(name = "ItemQuantity",required = false)
private String ItemQuantity;
@XmlElement(name = "LinearSpatialDimension",required = false)
private LinearSpatialDimension LinearSpatialDimension;
public void setItemQuantity(String ItemQuantity) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class URIEmailCommunication {
@XmlElement(name = "URIID",required = false)
private String URIID;
public void setURIID(String URIID) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.common;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class UsedLogisticsTransportMeans {
@XmlElement(name = "Name",required = false)
private String Name;
public void setName(String Name) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AffixedLogisticsSeal {
@XmlElement(name = "ID",required = false)
private String ID;
public void setID(String ID) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableLogisticsAllowanceCharge {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Reason",required = false)
private String Reason;
@XmlElement(name = "ActualAmount",required = false)
private String ActualAmount;
@XmlElement(name = "PartyTypeCode",required = false)
private String PartyTypeCode;
public void setID(String ID) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableLogisticsServiceCharge {
@XmlElement(name = "ServiceTypeCode",required = false)
private String ServiceTypeCode;
public void setServiceTypeCode(String ServiceTypeCode) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableTradeCurrencyExchange {
@XmlElement(name = "SourceCurrencyCode",required = false)
private String SourceCurrencyCode;
@XmlElement(name = "TargetCurrencyCode",required = false)
private String TargetCurrencyCode;
@XmlElement(name = "MarketID",required = false)
private String MarketID;
@XmlElement(name = "ConversionRate",required = false)
private String ConversionRate;
public void setSourceCurrencyCode(String SourceCurrencyCode) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ApplicableTransportCargoInsurance {
@XmlElement(name = "CoverageInsuranceParty",required = false)
private CoverageInsuranceParty CoverageInsuranceParty;
public void setCoverageInsuranceParty(CoverageInsuranceParty CoverageInsuranceParty) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AssociatedConsignmentCustomsProcedure {
@XmlElement(name = "GoodsStatusCode",required = false)
private String GoodsStatusCode;
public void setGoodsStatusCode(String GoodsStatusCode) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AssociatedRegisteredTax {
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
public void setTypeCode(String TypeCode) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class AssociatedUnitLoadTransportEquipment {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "LoadedPackageQuantity",required = false)
private String LoadedPackageQuantity;
@XmlElement(name = "CharacteristicCode",required = false)
private String CharacteristicCode;
@XmlElement(name = "OperatingParty",required = false)
private OperatingParty OperatingParty;
public void setID(String ID) {
... ...
... ... @@ -3,23 +3,35 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.GrossWeightMeasure;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ConsolidationInformation {
private String GrossWeightMeasure;
@XmlElement(name = "GrossWeightMeasure",required = false)
private GrossWeightMeasure GrossWeightMeasure;
@XmlElement(name = "PackageQuantity",required = false)
private String PackageQuantity;
@XmlElement(name = "PieceQuantity",required = false)
private String PieceQuantity;
public void setGrossWeightMeasure(String GrossWeightMeasure) {
public void setGrossWeightMeasure(GrossWeightMeasure GrossWeightMeasure) {
this.GrossWeightMeasure = GrossWeightMeasure;
}
public String getGrossWeightMeasure() {
public GrossWeightMeasure getGrossWeightMeasure() {
return GrossWeightMeasure;
}
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class CoverageInsuranceParty {
@XmlElement(name = "Role",required = false)
private String Role;
public void setRole(String Role) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.FinalDestinationLocation;
import com.agent.xml.fhlsli.common.OriginLocation;
... ... @@ -12,13 +17,21 @@ import com.agent.xml.fhlsli.common.OriginLocation;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class FhlMasterConsignment {
@XmlElement(name = "IncludedTareGrossWeightMeasure",required = false)
private String IncludedTareGrossWeightMeasure;
@XmlElement(name = "TotalPieceQuantity",required = false)
private String TotalPieceQuantity;
@XmlElement(name = "TransportContractDocument",required = false)
private TransportContractDocument TransportContractDocument;
@XmlElement(name = "OriginLocation",required = false)
private OriginLocation OriginLocation;
@XmlElement(name = "FinalDestinationLocation",required = false)
private FinalDestinationLocation FinalDestinationLocation;
@XmlElement(name = "IncludedHouseConsignment",required = false)
private IncludedHouseConsignment IncludedHouseConsignment;
public void setIncludedTareGrossWeightMeasure(String IncludedTareGrossWeightMeasure) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class HouseWaybill {
@XmlElement(name = "MasterConsignment",required = false)
private FhlMasterConsignment MasterConsignment;
public void setMasterConsignment(FhlMasterConsignment MasterConsignment) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedAccountingNote {
@XmlElement(name = "ContentCode",required = false)
private String ContentCode;
@XmlElement(name = "Content",required = false)
private String Content;
public void setContentCode(String ContentCode) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.AssociatedParty;
import com.agent.xml.fhlsli.common.AssociatedReferenceDocument;
import com.agent.xml.fhlsli.common.ConsigneeParty;
... ... @@ -11,6 +16,7 @@ import com.agent.xml.fhlsli.common.FinalDestinationLocation;
import com.agent.xml.fhlsli.common.FreightForwarderParty;
import com.agent.xml.fhlsli.common.HandlingInstructions;
import com.agent.xml.fhlsli.common.IncludedCustomsNote;
import com.agent.xml.fhlsli.common.IncludedTareGrossWeightMeasure;
import com.agent.xml.fhlsli.common.OriginLocation;
import com.agent.xml.fhlsli.common.SpecifiedLogisticsTransportMovement;
... ... @@ -20,49 +26,93 @@ import com.agent.xml.fhlsli.common.SpecifiedLogisticsTransportMovement;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedHouseConsignment {
@XmlElement(name = "TransportContractDocument",required = false)
private TransportContractDocument TransportContractDocument;
@XmlElement(name = "ConsolidationInformation",required = false)
private ConsolidationInformation ConsolidationInformation;
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "NilCarriageValueIndicator",required = false)
private String NilCarriageValueIndicator;
@XmlElement(name = "DeclaredValueForCarriageAmount",required = false)
private String DeclaredValueForCarriageAmount;
@XmlElement(name = "NilCustomsValueIndicator",required = false)
private String NilCustomsValueIndicator;
@XmlElement(name = "DeclaredValueForCustomsAmount",required = false)
private String DeclaredValueForCustomsAmount;
@XmlElement(name = "NilInsuranceValueIndicator",required = false)
private String NilInsuranceValueIndicator;
@XmlElement(name = "InsuranceValueAmount",required = false)
private String InsuranceValueAmount;
@XmlElement(name = "TotalChargePrepaidIndicator",required = false)
private String TotalChargePrepaidIndicator;
private String WeightTotalChargeAmount;
@XmlElement(name = "WeightTotalChargeAmount",required = false)
private WeightTotalChargeAmount WeightTotalChargeAmount;
@XmlElement(name = "ValuationTotalChargeAmount",required = false)
private String ValuationTotalChargeAmount;
@XmlElement(name = "TaxTotalChargeAmount",required = false)
private String TaxTotalChargeAmount;
@XmlElement(name = "TotalDisbursementPrepaidIndicator",required = false)
private String TotalDisbursementPrepaidIndicator;
@XmlElement(name = "AgentTotalDisbursementAmount",required = false)
private String AgentTotalDisbursementAmount;
@XmlElement(name = "CarrierTotalDisbursementAmount",required = false)
private String CarrierTotalDisbursementAmount;
@XmlElement(name = "TotalPrepaidChargeAmount",required = false)
private String TotalPrepaidChargeAmount;
@XmlElement(name = "TotalCollectChargeAmount",required = false)
private String TotalCollectChargeAmount;
private String IncludedTareGrossWeightMeasure;
@XmlElement(name = "IncludedTareGrossWeightMeasure",required = false)
private IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure;
@XmlElement(name = "GrossVolumeMeasure",required = false)
private String GrossVolumeMeasure;
@XmlElement(name = "PackageQuantity",required = false)
private String PackageQuantity;
@XmlElement(name = "TotalPieceQuantity",required = false)
private String TotalPieceQuantity;
@XmlElement(name = "SummaryDescription",required = false)
private String SummaryDescription;
@XmlElement(name = "FreightRateTypeCode",required = false)
private String FreightRateTypeCode;
@XmlElement(name = "ConsignorParty",required = false)
private ConsignorParty ConsignorParty;
@XmlElement(name = "ConsigneeParty",required = false)
private ConsigneeParty ConsigneeParty;
@XmlElement(name = "FreightForwarderParty",required = false)
private FreightForwarderParty FreightForwarderParty;
@XmlElement(name = "AssociatedParty",required = false)
private AssociatedParty AssociatedParty;
@XmlElement(name = "ApplicableTransportCargoInsurance",required = false)
private ApplicableTransportCargoInsurance ApplicableTransportCargoInsurance;
@XmlElement(name = "OriginLocation",required = false)
private OriginLocation OriginLocation;
@XmlElement(name = "FinalDestinationLocation",required = false)
private FinalDestinationLocation FinalDestinationLocation;
@XmlElement(name = "SpecifiedLogisticsTransportMovement",required = false)
private SpecifiedLogisticsTransportMovement SpecifiedLogisticsTransportMovement;
@XmlElement(name = "UtilizedLogisticsTransportEquipment",required = false)
private UtilizedLogisticsTransportEquipment UtilizedLogisticsTransportEquipment;
@XmlElement(name = "HandlingInstructions",required = false)
private HandlingInstructions HandlingInstructions;
@XmlElement(name = "IncludedAccountingNote",required = false)
private IncludedAccountingNote IncludedAccountingNote;
@XmlElement(name = "IncludedCustomsNote",required = false)
private IncludedCustomsNote IncludedCustomsNote;
@XmlElement(name = "AssociatedReferenceDocument",required = false)
private AssociatedReferenceDocument AssociatedReferenceDocument;
@XmlElement(name = "AssociatedConsignmentCustomsProcedure",required = false)
private AssociatedConsignmentCustomsProcedure AssociatedConsignmentCustomsProcedure;
@XmlElement(name = "ApplicableTradeCurrencyExchange",required = false)
private ApplicableTradeCurrencyExchange ApplicableTradeCurrencyExchange;
@XmlElement(name = "ApplicableLogisticsServiceCharge",required = false)
private ApplicableLogisticsServiceCharge ApplicableLogisticsServiceCharge;
@XmlElement(name = "ApplicableLogisticsAllowanceCharge",required = false)
private ApplicableLogisticsAllowanceCharge ApplicableLogisticsAllowanceCharge;
@XmlElement(name = "IncludedHouseConsignmentItem",required = false)
private IncludedHouseConsignmentItem IncludedHouseConsignmentItem;
public void setTransportContractDocument(TransportContractDocument TransportContractDocument) {
... ... @@ -145,11 +195,11 @@ public class IncludedHouseConsignment {
return TotalChargePrepaidIndicator;
}
public void setWeightTotalChargeAmount(String WeightTotalChargeAmount) {
public void setWeightTotalChargeAmount(WeightTotalChargeAmount WeightTotalChargeAmount) {
this.WeightTotalChargeAmount = WeightTotalChargeAmount;
}
public String getWeightTotalChargeAmount() {
public WeightTotalChargeAmount getWeightTotalChargeAmount() {
return WeightTotalChargeAmount;
}
... ... @@ -209,11 +259,11 @@ public class IncludedHouseConsignment {
return TotalCollectChargeAmount;
}
public void setIncludedTareGrossWeightMeasure(String IncludedTareGrossWeightMeasure) {
public void setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure) {
this.IncludedTareGrossWeightMeasure = IncludedTareGrossWeightMeasure;
}
public String getIncludedTareGrossWeightMeasure() {
public IncludedTareGrossWeightMeasure getIncludedTareGrossWeightMeasure() {
return IncludedTareGrossWeightMeasure;
}
... ...
... ... @@ -3,8 +3,14 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.ApplicableFreightRateServiceCharge;
import com.agent.xml.fhlsli.common.AssociatedReferenceDocument;
import com.agent.xml.fhlsli.common.GrossWeightMeasure;
import com.agent.xml.fhlsli.common.NatureIdentificationTransportCargo;
import com.agent.xml.fhlsli.common.TransportLogisticsPackage;
... ... @@ -14,22 +20,39 @@ import com.agent.xml.fhlsli.common.TransportLogisticsPackage;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedHouseConsignmentItem {
@XmlElement(name = "SequenceNumeric",required = false)
private String SequenceNumeric;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
private String GrossWeightMeasure;
@XmlElement(name = "GrossWeightMeasure",required = false)
private GrossWeightMeasure GrossWeightMeasure;
@XmlElement(name = "GrossVolumeMeasure",required = false)
private String GrossVolumeMeasure;
@XmlElement(name = "TotalChargeAmount",required = false)
private String TotalChargeAmount;
@XmlElement(name = "PieceQuantity",required = false)
private String PieceQuantity;
private String TareWeightMeasure;
@XmlElement(name = "TareWeightMeasure",required = false)
private TareWeightMeasure TareWeightMeasure;
@XmlElement(name = "VolumetricFactor",required = false)
private String VolumetricFactor;
@XmlElement(name = "NatureIdentificationTransportCargo",required = false)
private NatureIdentificationTransportCargo NatureIdentificationTransportCargo;
@XmlElement(name = "OriginCountry",required = false)
private OriginCountry OriginCountry;
@XmlElement(name = "AssociatedUnitLoadTransportEquipment",required = false)
private AssociatedUnitLoadTransportEquipment AssociatedUnitLoadTransportEquipment;
@XmlElement(name = "TransportLogisticsPackage",required = false)
private TransportLogisticsPackage TransportLogisticsPackage;
@XmlElement(name = "ApplicableFreightRateServiceCharge",required = false)
private ApplicableFreightRateServiceCharge ApplicableFreightRateServiceCharge;
@XmlElement(name = "AssociatedReferenceDocument",required = false)
private AssociatedReferenceDocument AssociatedReferenceDocument;
@XmlElement(name = "SpecifiedRateCombinationPointLocation",required = false)
private SpecifiedRateCombinationPointLocation SpecifiedRateCombinationPointLocation;
public void setSequenceNumeric(String SequenceNumeric) {
... ... @@ -48,11 +71,11 @@ public class IncludedHouseConsignmentItem {
return TypeCode;
}
public void setGrossWeightMeasure(String GrossWeightMeasure) {
public void setGrossWeightMeasure(GrossWeightMeasure GrossWeightMeasure) {
this.GrossWeightMeasure = GrossWeightMeasure;
}
public String getGrossWeightMeasure() {
public GrossWeightMeasure getGrossWeightMeasure() {
return GrossWeightMeasure;
}
... ... @@ -80,11 +103,11 @@ public class IncludedHouseConsignmentItem {
return PieceQuantity;
}
public void setTareWeightMeasure(String TareWeightMeasure) {
public void setTareWeightMeasure(TareWeightMeasure TareWeightMeasure) {
this.TareWeightMeasure = TareWeightMeasure;
}
public String getTareWeightMeasure() {
public TareWeightMeasure getTareWeightMeasure() {
return TareWeightMeasure;
}
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class OperatingParty {
@XmlElement(name = "PrimaryID",required = false)
private String PrimaryID;
public void setPrimaryID(String PrimaryID) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class OriginCountry {
@XmlElement(name = "ID",required = false)
private String ID;
public void setID(String ID) {
... ...
... ... @@ -3,16 +3,26 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedAddressLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
public void setID(String ID) {
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedRateCombinationPointLocation {
@XmlElement(name = "ID",required = false)
private String ID;
public void setID(String ID) {
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedTaxRegistration {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "AssociatedRegisteredTax",required = false)
private AssociatedRegisteredTax AssociatedRegisteredTax;
public void setID(String ID) {
... ...
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月15日 下午12:18:06
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class TareWeightMeasure {
@XmlValue
private String TareWeightMeasure;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public TareWeightMeasure() {
}
public String getTareWeightMeasure() {
return TareWeightMeasure;
}
public void setTareWeightMeasure(String tareWeightMeasure) {
TareWeightMeasure = tareWeightMeasure;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}
... ...
... ... @@ -3,14 +3,22 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class TransportContractDocument {
@XmlElement(name = "ID",required = false)
private String ID;
public void setID(String ID) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:18:23
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class UtilizedLogisticsTransportEquipment {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "CharacteristicCode",required = false)
private String CharacteristicCode;
@XmlElement(name = "Characteristic",required = false)
private String Characteristic;
@XmlElement(name = "AffixedLogisticsSeal",required = false)
private AffixedLogisticsSeal AffixedLogisticsSeal;
public void setID(String ID) {
... ...
package com.agent.xml.fhlsli.fhl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月15日 下午12:14:43
*
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class WeightTotalChargeAmount {
@XmlValue
private String WeightTotalChargeAmount;
@XmlAttribute(name = "unitCode", required = false)
private String unitCode;
public WeightTotalChargeAmount() {
}
public String getWeightTotalChargeAmount() {
return WeightTotalChargeAmount;
}
public void setChargeableWeightMeasure(String WeightTotalChargeAmount) {
this.WeightTotalChargeAmount = WeightTotalChargeAmount;
}
public String getUnitCode() {
return unitCode;
}
public void setUnitCode(String unitCode) {
this.unitCode = unitCode;
}
}
... ...
... ... @@ -3,15 +3,24 @@
*/
package com.agent.xml.fhlsli.sli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:41:30
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class EventTime {
@XmlElement(name = "OccurrenceDateTime",required = false)
private String OccurrenceDateTime;
@XmlElement(name = "DateTimeTypeCode",required = false)
private String DateTimeTypeCode;
public void setOccurrenceDateTime(String OccurrenceDateTime) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.sli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.ApplicableFreightRateServiceCharge;
import com.agent.xml.fhlsli.common.NatureIdentificationTransportCargo;
import com.agent.xml.fhlsli.common.TransportLogisticsPackage;
... ... @@ -13,17 +18,29 @@ import com.agent.xml.fhlsli.common.TransportLogisticsPackage;
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class IncludedMasterConsignmentItem {
@XmlElement(name = "SequenceNumeric",required = false)
private String SequenceNumeric;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
@XmlElement(name = "GrossWeightMeasure",required = false)
private String GrossWeightMeasure;
@XmlElement(name = "GrossVolumeMeasure",required = false)
private String GrossVolumeMeasure;
@XmlElement(name = "TotalChargeAmount",required = false)
private String TotalChargeAmount;
@XmlElement(name = "PieceQuantity",required = false)
private String PieceQuantity;
@XmlElement(name = "TareWeightMeasure",required = false)
private String TareWeightMeasure;
@XmlElement(name = "NatureIdentificationTransportCargo",required = false)
private NatureIdentificationTransportCargo NatureIdentificationTransportCargo;
@XmlElement(name = "TransportLogisticsPackage",required = false)
private TransportLogisticsPackage TransportLogisticsPackage;
@XmlElement(name = "ApplicableFreightRateServiceCharge",required = false)
private ApplicableFreightRateServiceCharge ApplicableFreightRateServiceCharge;
public void setSequenceNumeric(String SequenceNumeric) {
... ...
... ... @@ -3,17 +3,28 @@
*/
package com.agent.xml.fhlsli.sli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:41:30
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ReportedStatus {
@XmlElement(name = "ReasonCode",required = false)
private String ReasonCode;
@XmlElement(name = "OperationCode",required = false)
private String OperationCode;
@XmlElement(name = "EventTime",required = false)
private EventTime EventTime;
@XmlElement(name = "SpecifiedLocation",required = false)
private SpecifiedLocation SpecifiedLocation;
public void setReasonCode(String ReasonCode) {
... ...
... ... @@ -3,6 +3,11 @@
*/
package com.agent.xml.fhlsli.sli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.agent.xml.fhlsli.common.AssociatedParty;
import com.agent.xml.fhlsli.common.AssociatedReferenceDocument;
import com.agent.xml.fhlsli.common.ConsigneeParty;
... ... @@ -11,41 +16,74 @@ import com.agent.xml.fhlsli.common.FinalDestinationLocation;
import com.agent.xml.fhlsli.common.FreightForwarderParty;
import com.agent.xml.fhlsli.common.HandlingInstructions;
import com.agent.xml.fhlsli.common.IncludedCustomsNote;
import com.agent.xml.fhlsli.common.IncludedTareGrossWeightMeasure;
import com.agent.xml.fhlsli.common.OriginLocation;
import com.agent.xml.fhlsli.common.SpecifiedLogisticsTransportMovement;
/**
* Auto-generated: 2018-06-09 15:41:30
*
* Depiction:
* <p>
* Modify:
* <p>
* Author: William Lynn
* <p>
* Create Date:2018年6月13日 下午4:12:46
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SliMasterConsignment {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "NilCarriageValueIndicator",required = false)
private String NilCarriageValueIndicator;
@XmlElement(name = "DeclaredValueForCarriageAmount",required = false)
private String DeclaredValueForCarriageAmount;
@XmlElement(name = "NilCustomsValueIndicator",required = false)
private String NilCustomsValueIndicator;
@XmlElement(name = "DeclaredValueForCustomsAmount",required = false)
private String DeclaredValueForCustomsAmount;
@XmlElement(name = "NilInsuranceValueIndicator",required = false)
private String NilInsuranceValueIndicator;
@XmlElement(name = "InsuranceValueAmount",required = false)
private String InsuranceValueAmount;
@XmlElement(name = "TotalChargePrepaidIndicator",required = false)
private String TotalChargePrepaidIndicator;
@XmlElement(name = "TotalDisbursementPrepaidIndicator",required = false)
private String TotalDisbursementPrepaidIndicator;
private String IncludedTareGrossWeightMeasure;
@XmlElement(name = "IncludedTareGrossWeightMeasure",required = false)
private IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure;
@XmlElement(name = "NetWeightMeasure",required = false)
private String NetWeightMeasure;
@XmlElement(name = "GrossVolumeMeasure",required = false)
private String GrossVolumeMeasure;
@XmlElement(name = "TotalPieceQuantity",required = false)
private String TotalPieceQuantity;
@XmlElement(name = "ConsignorParty",required = false)
private ConsignorParty ConsignorParty;
@XmlElement(name = "ConsigneeParty",required = false)
private ConsigneeParty ConsigneeParty;
@XmlElement(name = "FreightForwarderParty",required = false)
private FreightForwarderParty FreightForwarderParty;
@XmlElement(name = "AssociatedParty",required = false)
private AssociatedParty AssociatedParty;
@XmlElement(name = "OriginLocation",required = false)
private OriginLocation OriginLocation;
@XmlElement(name = "FinalDestinationLocation",required = false)
private FinalDestinationLocation FinalDestinationLocation;
@XmlElement(name = "SpecifiedLogisticsTransportMovement",required = false)
private SpecifiedLogisticsTransportMovement SpecifiedLogisticsTransportMovement;
@XmlElement(name = "HandlingInstructions",required = false)
private HandlingInstructions HandlingInstructions;
@XmlElement(name = "AssociatedReferenceDocument",required = false)
private AssociatedReferenceDocument AssociatedReferenceDocument;
@XmlElement(name = "IncludedCustomsNote",required = false)
private IncludedCustomsNote IncludedCustomsNote;
@XmlElement(name = "IncludedMasterConsignmentItem",required = false)
private IncludedMasterConsignmentItem IncludedMasterConsignmentItem;
@XmlElement(name = "ReportedStatus",required = false)
private ReportedStatus ReportedStatus;
public void setID(String ID) {
... ... @@ -120,11 +158,11 @@ public class SliMasterConsignment {
return TotalDisbursementPrepaidIndicator;
}
public void setIncludedTareGrossWeightMeasure(String IncludedTareGrossWeightMeasure) {
public void setIncludedTareGrossWeightMeasure(IncludedTareGrossWeightMeasure IncludedTareGrossWeightMeasure) {
this.IncludedTareGrossWeightMeasure = IncludedTareGrossWeightMeasure;
}
public String getIncludedTareGrossWeightMeasure() {
public IncludedTareGrossWeightMeasure getIncludedTareGrossWeightMeasure() {
return IncludedTareGrossWeightMeasure;
}
... ...
... ... @@ -3,16 +3,26 @@
*/
package com.agent.xml.fhlsli.sli;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Auto-generated: 2018-06-09 15:41:30
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class SpecifiedLocation {
@XmlElement(name = "ID",required = false)
private String ID;
@XmlElement(name = "Name",required = false)
private String Name;
@XmlElement(name = "TypeCode",required = false)
private String TypeCode;
public void setID(String ID) {
... ...
... ... @@ -15,8 +15,23 @@ import java.util.Date;
*/
public class CustomMessageKit {
public static String getMessageDir() {
String dirPath = PropertiesLoader.get("custom.message.dir", "/application.properties");
// smb://mrz:vmvnv1v2VV@10.50.3.61/nms_customs_xml2/
public static String getMessageSmbRemoteDir() {
StringBuilder sb = new StringBuilder();
sb.append("smb://");
String username = PropertiesLoader.get("custom.message.username", "/application.properties");
sb.append(username + ":");
String password = PropertiesLoader.get("custom.message.password", "/application.properties");
sb.append(password + "@");
String server = PropertiesLoader.get("custom.message.server", "/application.properties");
sb.append(server + "/");
String remotedir = PropertiesLoader.get("custom.message.remotedir", "/application.properties");
sb.append(remotedir + "/");
return sb.toString();
}
public static String getMessageLocalDir() {
String dirPath = PropertiesLoader.get("custom.message.localdir", "/application.properties");
File dir = new File(dirPath);
if (dir == null || !dir.exists()) {
dir.mkdirs();
... ... @@ -25,7 +40,7 @@ public class CustomMessageKit {
}
public static String getMessagePath() {
return getMessageDir() + "/" + getMessageName();
return getMessageLocalDir() + "/" + getMessageName();
}
public static String getMessageName() {
... ...
... ... @@ -7,7 +7,6 @@ import java.util.Map;
import com.agent.entity.system.UserEntity;
import com.alibaba.fastjson.JSONObject;
import tools.HttpRequest;
import tools.HttpTools;
public class FLogin {
... ...
... ... @@ -23,8 +23,14 @@ service.address=http://10.50.3.66:9009/ShipmentStatusWS.asmx
service.xquery=BA8EC
custom.message.dir=/Users/Kevin/Desktop/agent/message
#local
#custom.message.localdir=/Users/Kevin/Desktop/agent/message
#server
custom.message.localdir=/home/agent_xml
custom.message.username=mrz
custom.message.password=vmvnv1v2VV
custom.message.server=10.50.3.61
custom.message.remotedir=nms_customs_xml2
imf.config.file = /Users/Kevin/Desktop/agent/imf_config.properties
img_username=NDLR
img_password=NDLR_P
... ...
... ... @@ -10,12 +10,18 @@
<File name="log" fileName="target/vss.log" append="false">
<PatternLayout pattern="%d{HH:mm:ss} %-5level %class{36} %L %M - %msg%xEx%n" />
</File>
<RollingFile name="RollingFile" fileName="/Users/Kevin/Documents/develop/tomcat/webapps/agent/logs/agent.log"
filePattern="/Users/Kevin/Documents/develop/tomcat/webapps/agent/$${date:yyyy-MM}/agent-%d{MM-dd-yyyy}-%i.log.gz">
<RollingFile name="RollingFile" fileName="/home/agent/tomcat/logs/agent.log"
filePattern="/home/agent/tomcat/logs/$${date:yyyy-MM}/agent-%d{MM-dd-yyyy}-%i.log.gz">
<PatternLayout
pattern="%d{yyyy.MM.dd 'at' HH:mm:ss z} %-5level %class{36} %L %M - %msg%xEx%n" />
<SizeBasedTriggeringPolicy size="50 MB" />
</RollingFile>
<!-- <RollingFile name="RollingFile" fileName="/Users/Kevin/Documents/develop/tomcat/webapps/agent/logs/agent.log"
filePattern="/Users/Kevin/Documents/develop/tomcat/webapps/agent/$${date:yyyy-MM}/agent-%d{MM-dd-yyyy}-%i.log.gz">
<PatternLayout
pattern="%d{yyyy.MM.dd 'at' HH:mm:ss z} %-5level %class{36} %L %M - %msg%xEx%n" />
<SizeBasedTriggeringPolicy size="50 MB" />
</RollingFile> -->
</appenders>
<loggers>
... ...
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:util="http://www.springframework.org/schema/util"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:p="http://www.springframework.org/schema/p"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:p="http://www.springframework.org/schema/p" xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<description>Shiro 配置文件</description>
<!-- 缓存管理器 -->
<bean id="shiroEhcacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">
<property name="cacheManagerConfigFile" value="classpath:security/ehcache-shiro.xml"/>
</bean>
<!-- 会话Cookie模板 -->
<bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
<constructor-arg value="sid"/>
<property name="httpOnly" value="true"/>
<property name="maxAge" value="-1"/>
</bean>
<bean id="rememberMeCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
<constructor-arg value="rememberMe"/>
<property name="httpOnly" value="true"/>
<!-- 30天 -->
<property name="maxAge" value="2592000"/>
</bean>
<!-- rememberMe管理器 -->
<bean id="rememberMeManager" class="org.apache.shiro.web.mgt.CookieRememberMeManager">
<property name="cipherKey" value="#{T(org.apache.shiro.codec.Base64).decode('4AvVhmFLUs0KTA3Kprsdag==')}"/>
<property name="cookie" ref="rememberMeCookie"/>
</bean>
<!-- Realm实现 -->
<bean id="userRealm" class="com.framework.shiro.UserRealm">
<property name="cachingEnabled" value="true"/>
</bean>
<!-- 安全管理器 -->
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<property name="realm" ref="userRealm"/>
<property name="cacheManager" ref="shiroEhcacheManager"/>
<property name="rememberMeManager" ref="rememberMeManager"/>
</bean>
<!-- Shiro生命周期处理器-->
<bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>
<!-- AOP式方法级权限检查 -->
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor">
<property name="proxyTargetClass" value="true" />
</bean>
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"/>
</bean>
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<prop key="org.apache.shiro.authz.UnauthorizedException">/unauthorized</prop>
</props>
</property>
</bean>
<!-- Shiro的Web过滤器 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager"/>
<property name="loginUrl" value="/login"/>
<property name="unauthorizedUrl" value="/unauthorized" />
<property name="filterChainDefinitions">
<value>
/login = anon
/druid/** = anon
/unauthorized = anon
/resource/** = anon
/doLogin = anon
/retrieve/** = anon
/reset/password = anon
/change/passwd= anon
/captcha/** = anon
/fileDownload/** = anon
/**/cross/** = anon
/tracking/detail/** = anon
/logout = logout
/** = authc
</value>
</property>
</bean>
<bean id="logout" class="org.apache.shiro.web.filter.authc.LogoutFilter">
<property name="redirectUrl" value="/login" />
</bean>
<description>Shiro 配置文件</description>
<!-- 缓存管理器 -->
<bean id="shiroEhcacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">
<property name="cacheManagerConfigFile" value="classpath:security/ehcache-shiro.xml" />
</bean>
<!-- 会话Cookie模板 -->
<bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
<constructor-arg value="sid" />
<property name="httpOnly" value="true" />
<property name="maxAge" value="-1" />
</bean>
<bean id="rememberMeCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
<constructor-arg value="rememberMe" />
<property name="httpOnly" value="true" />
<!-- 30天 -->
<property name="maxAge" value="2592000" />
</bean>
<!-- rememberMe管理器 -->
<bean id="rememberMeManager" class="org.apache.shiro.web.mgt.CookieRememberMeManager">
<property name="cipherKey"
value="#{T(org.apache.shiro.codec.Base64).decode('4AvVhmFLUs0KTA3Kprsdag==')}" />
<property name="cookie" ref="rememberMeCookie" />
</bean>
<!-- Realm实现 -->
<bean id="userRealm" class="com.framework.shiro.UserRealm">
<property name="cachingEnabled" value="true" />
</bean>
<!-- 安全管理器 -->
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<property name="realm" ref="userRealm" />
<property name="cacheManager" ref="shiroEhcacheManager" />
<property name="rememberMeManager" ref="rememberMeManager" />
</bean>
<!-- Shiro生命周期处理器 -->
<bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor" />
<!-- AOP式方法级权限检查 -->
<bean
class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"
depends-on="lifecycleBeanPostProcessor">
<property name="proxyTargetClass" value="true" />
</bean>
<bean
class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager" />
</bean>
<bean
class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<prop key="org.apache.shiro.authz.UnauthorizedException">/unauthorized</prop>
</props>
</property>
</bean>
<!-- Shiro的Web过滤器 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="loginUrl" value="/login" />
<property name="unauthorizedUrl" value="/unauthorized" />
<property name="filterChainDefinitions">
<value>
/receipt/a0608c4054662dd902e1314f7e450e3eaa81c114 = anon
/login = anon
/druid/** = anon
/unauthorized = anon
/resource/** = anon
/doLogin = anon
/retrieve/** = anon
/reset/password = anon
/change/passwd= anon
/captcha/** = anon
/fileDownload/** = anon
/**/cross/** = anon
/tracking/detail/** = anon
/logout = logout
/** = authc
</value>
</property>
</bean>
<bean id="logout" class="org.apache.shiro.web.filter.authc.LogoutFilter">
<property name="redirectUrl" value="/login" />
</bean>
</beans>
\ No newline at end of file
... ...
... ... @@ -53,25 +53,25 @@
id="waybillnomaster" minlength="12" maxlength="12" name="waybillnomaster" type="hidden"
value="${manifest.waybillnomaster }"></td>
<script>
function input_change(obj){
var val = $(obj).val();
//用户输入订单号满足格式
if(val.length == 12 && val.indexOf("-") >= 0)
{
$.ajax({
url:"<%=basePath%>/manifest/gettreecode",
method:"get",
data:{
STOCKPRE:val.split("-")[0]
},
success:function(data){
var d = data.data;
$("#carrier").val(d.cARRIERID);
}
});
}
}
</script>
function input_change(obj){
var val = $(obj).val();
//用户输入订单号满足格式
if(val.length == 12 && val.indexOf("-") >= 0)
{
$.ajax({
url:"<%=basePath%>/manifest/gettreecode",
method:"get",
data:{
STOCKPRE:val.split("-")[0]
},
success:function(data){
var d = data.data;
$("#carrier").val(d.cARRIERID);
}
});
}
}
</script>
</tr>
<tr>
<td class="kv-label"><spring:message code="delivery.name.of.goods" /></td>
... ... @@ -230,28 +230,29 @@
<tr>
<td class="kv-label" colspan="1"><spring:message code="manifest.shipper.information" />
</td>
<td class="kv-content" colspan="5"><select onchange="changeFHselect()"
<td class="kv-content" colspan="5"><select onchange="changeConsignorSelect()"
id="fh_select">
<option value="-1">请选择</option>
</select> <script>
var select_data = null;
function changeFHselect(){
if(select_data != null)
var consignorList = null;
function changeConsignorSelect(){
if(consignorList != null)
{
var index = parseInt($("#fh_select").find("option:selected").val());
if(index >= 0)
{
$("#co_company").val(select_data[index].co_company?select_data[index].co_company:"");
$("#co_address").val(select_data[index].co_address?select_data[index].co_address:"");
$("#co_telephone").val(select_data[index].co_telephone?select_data[index].co_telephone:"");
$("#co_country").val(select_data[index].co_country?select_data[index].co_country:"");
$("#co_city").val(select_data[index].co_city?select_data[index].co_city:"");
$("#co_deltaname").val(select_data[index].co_deltaname?select_data[index].co_deltaname:"");
$("#co_name").val(select_data[index].co_name?select_data[index].co_name:"");
$("#co_fax").val(select_data[index].co_fax?select_data[index].co_fax:"");
$("#co_zipcode").val(select_data[index].co_zipcode?select_data[index].co_zipcode:"");
$("#shpaeo").val(select_data[index].shpaeo?select_data[index].shpaeo:"");
$("#shpcusid").val(select_data[index].shpcusid?select_data[index].shpcusid:"");
var consignor = consignorList[index];
$("#co_company").val(consignor.co_company?consignor.co_company:"");
$("#co_address").val(consignor.co_address?consignor.co_address:"");
$("#co_telephone").val(consignor.co_telephone?consignor.co_telephone:"");
$("#co_country").val(consignor.co_country?consignor.co_country:"");
$("#co_city").val(consignor.co_city?consignor.co_city:"");
$("#co_deltaname").val(consignor.co_deltaname?consignor.co_deltaname:"");
$("#co_name").val(consignor.co_name?consignor.co_name:"");
$("#co_fax").val(consignor.co_fax?consignor.co_fax:"");
$("#co_zipcode").val(consignor.co_zipcode?consignor.co_zipcode:"");
$("#shpaeo").val(consignor.shpaeo?consignor.shpaeo:"");
$("#shpcusid").val(consignor.shpcusid?consignor.shpcusid:"");
}
}
}
... ... @@ -263,12 +264,11 @@
{
if(data.data)
{
select_data = data.data;
consignorList = data.data;
for(var i = 0; i < data.data.length; i ++)
{
var select = $("#fh_select");
select.append("<option value='"+i+"'>"+data.data[i].co_company+"</option>");
}
}
}
... ... @@ -339,21 +339,22 @@
<!-- 收货人信息 start -->
<tr>
<td class="kv-label" colspan="1"><spring:message code="manifest.consignee" /></td>
<td class="kv-content" colspan="5"><select onchange="changeselect()"
<td class="kv-content" colspan="5"><select onchange="changeConsigneeSelect()"
id="consignee_select">
<option value="-1">请选择</option>
</select> <script>
var select_data = null;
function changeselect(){
if(select_data != null)
var consigneeList = null;
function changeConsigneeSelect(){
if(consigneeList != null)
{
var index = parseInt($("#consignee_select").find("option:selected").val());
if(index >= 0)
{
$("#sh_company").val(select_data[index].code?select_data[index].code:"");
$("#sh_address").val(select_data[index].address?select_data[index].address:"");
$("#sh_telephone").val(select_data[index].tel?select_data[index].tel:"");
$("#sh_country").val(select_data[index].name?select_data[index].name:"");
{
var consignee = consigneeList[index];
$("#sh_company").val(consignee.code?consignee.code:"");
$("#sh_address").val(consignee.address?consignee.address:"");
$("#sh_telephone").val(consignee.tel?consignee.tel:"");
$("#sh_country").val(consignee.name?consignee.name:"");
}
}
}
... ... @@ -364,11 +365,11 @@
{
if(data.data)
{
select_data = data.data;
consigneeList = data.data;
for(var i = 0; i < data.data.length; i ++)
{
var select = $("#consignee_select");
select.append("<option value='"+i+"'>"+data.data[i].code+"</option>");
select.append("<option value='"+i+"'>"+consigneeList[i].code+"</option>");
}
}
... ...
... ... @@ -222,28 +222,29 @@
<!-- 发货信息 start -->
<tr>
<td class="kv-label"><spring:message code="manifest.shipper.information" /></td>
<td class="kv-content" colspan="5"><select onchange="changeFHselect()"
<td class="kv-content" colspan="5"><select onchange="changeConsignorSelect()"
id="fh_select">
<option value="-1">请选择</option>
</select> <script>
var select_data = null;
function changeFHselect(){
if(select_data != null)
var consignorList = null;
function changeConsignorSelect(){
if(consignorList != null)
{
var index = parseInt($("#fh_select").find("option:selected").val());
if(index >= 0)
{
$("#co_company").val(select_data[index].co_company);
$("#co_address").val(select_data[index].co_address);
$("#co_telephone").val(select_data[index].co_telephone);
$("#co_country").val(select_data[index].co_country);
$("#co_city").val(select_data[index].co_city);
$("#co_deltaname").val(select_data[index].co_deltaname);
$("#co_name").val(select_data[index].co_name);
$("#co_fax").val(select_data[index].co_fax);
$("#co_zipcode").val(select_data[index].co_zipcode);
$("#shpaeo").val(select_data[index].shpaeo);
$("#shpcusid").val(select_data[index].shpcusid);
var consignor = consignorList[index];
$("#co_company").val(consignor.co_company?consignor.co_company:"");
$("#co_address").val(consignor.co_address?consignor.co_address:"");
$("#co_telephone").val(consignor.co_telephone?consignor.co_telephone:"");
$("#co_country").val(consignor.co_country?consignor.co_country:"");
$("#co_city").val(consignor.co_city?consignor.co_city:"");
$("#co_deltaname").val(consignor.co_deltaname?consignor.co_deltaname:"");
$("#co_name").val(consignor.co_name?consignor.co_name:"");
$("#co_fax").val(consignor.co_fax?consignor.co_fax:"");
$("#co_zipcode").val(consignor.co_zipcode?consignor.co_zipcode:"");
$("#shpaeo").val(consignor.shpaeo?consignor.shpaeo:"");
$("#shpcusid").val(consignor.shpcusid?consignor.shpcusid:"");
}
}
}
... ... @@ -255,11 +256,11 @@
{
if(data.data)
{
select_data = data.data;
consignorList = data.data;
for(var i = 0; i < data.data.length; i ++)
{
var select = $("#fh_select");
select.append("<option value='"+i+"'>"+data.data[i].co_company+"</option>");
select.append("<option value='"+i+"'>"+consignorList[i].co_company+"</option>");
}
}
... ... @@ -325,21 +326,22 @@
<!-- 收货信息 start -->
<tr>
<td class="kv-label" colspan="1"><spring:message code="manifest.consignee" /></td>
<td class="kv-content" colspan="5"><select onchange="changeselect()"
<td class="kv-content" colspan="5"><select onchange="changeConsigneeSelect()"
id="consignee_select">
<option value="-1">请选择</option>
</select> <script>
var select_data = null;
function changeselect(){
if(select_data != null)
var consigneeList = null;
function changeConsigneeSelect(){
if(consigneeList != null)
{
var index = parseInt($("#consignee_select").find("option:selected").val());
if(index >= 0)
{
$("#sh_company").val(select_data[index].code);
$("#sh_address").val(select_data[index].address);
$("#sh_telephone").val(select_data[index].tel);
$("#sh_country").val(select_data[index].name);
var consignee = consigneeList[index];
$("#sh_company").val(consignee.code?consignee.code:"");
$("#sh_address").val(consignee.address?consignee.address:"");
$("#sh_telephone").val(consignee.tel?consignee.tel:"");
$("#sh_country").val(consignee.name?consignee.name:"");
}
}
}
... ... @@ -350,11 +352,11 @@
{
if(data.data)
{
select_data = data.data;
consigneeList = data.data;
for(var i = 0; i < data.data.length; i ++)
{
var select = $("#consignee_select");
select.append("<option value='"+i+"'>"+data.data[i].code+"</option>");
select.append("<option value='"+i+"'>"+consigneeList[i].code+"</option>");
}
}
... ...
... ... @@ -3,7 +3,7 @@
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<!-- shiro -->
<filter>
<filter-name>shiroFilter</filter-name>
... ... @@ -17,18 +17,18 @@
<filter-name>shiroFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- 过滤拦截器 -->
<filter>
<filter-name>myshirofilter</filter-name>
<filter-class>com.agent.filter.MyShiroController</filter-class>
</filter>
<filter-name>myshirofilter</filter-name>
<filter-class>com.agent.filter.MyShiroController</filter-class>
</filter>
<filter-mapping>
<filter-name>myshirofilter</filter-name>
<url-pattern>/*</url-pattern>
<filter-name>myshirofilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
... ... @@ -39,8 +39,8 @@
classpath:applicationContext-start.xml
</param-value>
</context-param>
<!-- 单点登出 -->
<!-- 单点登出 -->
<listener>
<listener-class>org.jasig.cas.client.session.SingleSignOutHttpSessionListener</listener-class>
</listener>
... ... @@ -52,7 +52,7 @@
<filter-name>singleSignOutFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- 编码 -->
<filter>
<filter-name>encodingFilter</filter-name>
... ... @@ -66,8 +66,8 @@
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- jpa 延迟加载 -->
<filter>
<filter-name>openEntityManagerInViewFilter</filter-name>
... ... @@ -77,7 +77,7 @@
<filter-name>openEntityManagerInViewFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- spring mvc -->
<servlet>
<servlet-name>webMvc</servlet-name>
... ... @@ -92,7 +92,7 @@
<servlet-name>webMvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 支持标准的httpmethod 方法 -->
<filter>
<filter-name>HttpMethodFilter</filter-name>
... ... @@ -102,7 +102,7 @@
<filter-name>HttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- Druid 连接池 -->
<filter>
<filter-name>DruidWebStatFilter</filter-name>
... ... @@ -124,16 +124,16 @@
<servlet-name>DruidStatView</servlet-name>
<url-pattern>/druid/*</url-pattern>
</servlet-mapping>
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/views/login.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/views/login.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/views/login.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/views/login.jsp</location>
</error-page>
</web-app>
\ No newline at end of file
... ...