作者 zhangFan

init

要显示太多修改。

为保证性能只显示 13 of 13+ 个文件。

不能预览此文件类型
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4 + <modelVersion>4.0.0</modelVersion>
  5 + <parent>
  6 + <groupId>org.springframework.boot</groupId>
  7 + <artifactId>spring-boot-starter-parent</artifactId>
  8 + <version>2.2.1.RELEASE</version>
  9 + <relativePath/> <!-- lookup parent from repository -->
  10 + </parent>
  11 + <groupId>com.sy.message</groupId>
  12 + <artifactId>custom-unified-declaration</artifactId>
  13 + <version>0.0.1-SNAPSHOT</version>
  14 + <name>custom-unified-declaration</name>
  15 + <description>Demo project for Spring Boot</description>
  16 +
  17 + <properties>
  18 + <java.version>1.8</java.version>
  19 + </properties>
  20 +
  21 + <dependencies>
  22 + <dependency>
  23 + <groupId>org.springframework.boot</groupId>
  24 + <artifactId>spring-boot-starter-web</artifactId>
  25 + </dependency>
  26 + <dependency>
  27 + <groupId>org.springframework.boot</groupId>
  28 + <artifactId>spring-boot-starter-freemarker</artifactId>
  29 + </dependency>
  30 + <dependency>
  31 + <groupId>org.springframework.boot</groupId>
  32 + <artifactId>spring-boot-starter-data-jpa</artifactId>
  33 + <version>2.1.4.RELEASE</version>
  34 + </dependency>
  35 + <dependency>
  36 + <groupId>org.mybatis.spring.boot</groupId>
  37 + <artifactId>mybatis-spring-boot-starter</artifactId>
  38 + <version>2.1.0</version>
  39 + </dependency>
  40 + <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/txw2 -->
  41 +
  42 + <dependency>
  43 + <groupId>dom4j</groupId>
  44 + <artifactId>dom4j</artifactId>
  45 + <version>1.6.1</version>
  46 + </dependency>
  47 + <dependency>
  48 + <groupId>com.alibaba</groupId>
  49 + <artifactId>druid-spring-boot-starter</artifactId>
  50 + <version>1.1.9</version>
  51 + </dependency>
  52 +
  53 + <!--<dependency>-->
  54 + <!--<groupId>org.springframework.boot</groupId>-->
  55 + <!--<artifactId>spring-boot-starter-test</artifactId>-->
  56 + <!--<scope>test</scope>-->
  57 + <!--<exclusions>-->
  58 + <!--<exclusion>-->
  59 + <!--<groupId>org.junit.vintage</groupId>-->
  60 + <!--<artifactId>junit-vintage-engine</artifactId>-->
  61 + <!--</exclusion>-->
  62 + <!--</exclusions>-->
  63 + <!--</dependency>-->
  64 + <dependency>
  65 + <groupId>org.apache.commons</groupId>
  66 + <artifactId>commons-lang3</artifactId>
  67 + <version>3.8.1</version>
  68 + </dependency>
  69 + </dependencies>
  70 +
  71 + <build>
  72 + <plugins>
  73 + <plugin>
  74 + <groupId>org.springframework.boot</groupId>
  75 + <artifactId>spring-boot-maven-plugin</artifactId>
  76 + </plugin>
  77 + <plugin>
  78 + <groupId>org.jvnet.jaxb2.maven2</groupId>
  79 + <artifactId>maven-jaxb2-plugin</artifactId>
  80 + <version>0.13.2</version>
  81 + <configuration>
  82 + <schemaDirectory>src/main/resources/xsd</schemaDirectory>
  83 + <generateDirectory>src/main/java</generateDirectory>
  84 + <packageLevelAnnotations>false</packageLevelAnnotations>
  85 + <noFileHeader>true</noFileHeader>
  86 + <episode>false</episode>
  87 + <locale>en</locale>
  88 + </configuration>
  89 + <executions>
  90 + <execution>
  91 + <id>xsd1-generate</id>
  92 + <goals>
  93 + <goal>generate</goal>
  94 + </goals>
  95 + <!--<configuration>-->
  96 + <!--<schemaIncludes>-->
  97 + <!--<include>DecMessage_ImportSave1.xsd</include>-->
  98 + <!--</schemaIncludes>-->
  99 + <!--<generatePackage>com.sy.message.model</generatePackage>-->
  100 + <!--</configuration>-->
  101 + </execution>
  102 + </executions>
  103 + </plugin>
  104 + <plugin>
  105 + <groupId>org.mybatis.generator</groupId>
  106 + <artifactId>mybatis-generator-maven-plugin</artifactId>
  107 + <version>1.3.5</version>
  108 + <configuration>
  109 + <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
  110 + <overwrite>true</overwrite>
  111 + <verbose>true</verbose>
  112 + </configuration>
  113 + </plugin>
  114 + </plugins>
  115 + </build>
  116 +
  117 +</project>
  1 +package com.sy.message;
  2 +
  3 +import org.springframework.boot.SpringApplication;
  4 +import org.springframework.boot.autoconfigure.SpringBootApplication;
  5 +
  6 +@SpringBootApplication
  7 +public class CustomUnifiedDeclarationApplication {
  8 +
  9 + public static void main(String[] args) {
  10 + SpringApplication.run(CustomUnifiedDeclarationApplication.class, args);
  11 + }
  12 +
  13 +}
  1 +package com.sy.message.controller;
  2 +
  3 +import org.springframework.stereotype.Controller;
  4 +
  5 +/**
  6 + * @author
  7 + * @time 2019-12-11 10:18
  8 + */
  9 +@Controller
  10 +public class UserController {
  11 +}
  1 +package com.sy.message.freeMarker;
  2 +
  3 +
  4 +import com.sy.message.model.*;
  5 +import freemarker.template.Configuration;
  6 +import freemarker.template.Template;
  7 +import freemarker.template.TemplateException;
  8 +
  9 +import java.io.*;
  10 +import java.util.*;
  11 +
  12 +/**
  13 + * @author
  14 + * @time 2019-12-11 10:24
  15 + */
  16 +public class FreeMarkerModel {
  17 +
  18 + public static void main(String[] args) {
  19 + FreeMarkerModel freeMarkerModel = new FreeMarkerModel();
  20 + Map map = new HashMap();
  21 +
  22 + DecHeadType headType = new DecHeadType();
  23 + DecListItemType decListItemType = new DecListItemType();
  24 + List<DecListItemType> decListItemTypes = new ArrayList<>();
  25 +
  26 + //货物
  27 + DecListItemType.DecGoodsLimits decGoodsLimits = new DecListItemType.DecGoodsLimits();
  28 + List<DecGoodsLimitType> decGoodsLimitTypes = new ArrayList<>();
  29 + DecGoodsLimitType decGoodsLimitType = new DecGoodsLimitType();
  30 + //许可证
  31 + List<DecGoodsLimitVinType> decGoodsLimitVinTypes = new ArrayList<>();
  32 + DecGoodsLimitVinType decGoodsLimitVinType = new DecGoodsLimitVinType();
  33 + decGoodsLimitVinTypes.add(decGoodsLimitVinType);
  34 +
  35 + decGoodsLimitType.setDecGoodsLimitVin(decGoodsLimitVinTypes);
  36 +
  37 + decGoodsLimitTypes.add(decGoodsLimitType);
  38 + decGoodsLimits.setDecGoodsLimit(decGoodsLimitTypes);
  39 +
  40 + decListItemType.setDecGoodsLimits(decGoodsLimits);
  41 + decListItemTypes.add(decListItemType);
  42 +
  43 + List<DecContainerType> decContainerTypes = new ArrayList<>();
  44 + List<DecRequestCertType> decRequestCertTypes = new ArrayList<>();
  45 + List<DecLicenseType> decLicenseTypes = new ArrayList<>();
  46 + List<DecCopLimitType> decCopLimitTypelist = new ArrayList<>();
  47 + List<DecUserType> decUserTypes = new ArrayList<>();
  48 + List<DecOtherPackType> decOtherPackTypes = new ArrayList<>();
  49 + List<DecMarkLobType> decMarkLobTypes = new ArrayList<>();
  50 + DecFreeTxtType decFreeTxtType = new DecFreeTxtType();
  51 + DecSignType decSignType = new DecSignType();
  52 + EdocRealationType edocRealationType = new EdocRealationType();
  53 + DecRiskType decRiskType = new DecRiskType();
  54 + map.put("decHeadType",headType);
  55 + map.put("decList",decListItemTypes);
  56 + map.put("decContainers",decContainerTypes);
  57 + map.put("decRequestCerts",decRequestCertTypes);
  58 + map.put("decLicenseDocus",decLicenseTypes);
  59 + map.put("decCopLimits",decCopLimitTypelist);
  60 + map.put("decUsers",decUserTypes);
  61 + map.put("decOtherPacks",decOtherPackTypes);
  62 + map.put("decMarkLobs",decMarkLobTypes);
  63 + map.put("decFreeTxt",decFreeTxtType);
  64 + map.put("decSign",decSignType);
  65 + map.put("edocRealation",edocRealationType);
  66 + map.put("decRisk",decRiskType);
  67 + try {
  68 + File file = new File("e:/user.xml");
  69 + BufferedWriter o = new BufferedWriter(new FileWriter(file));
  70 + o.write(freeMarkerModel.freeMarkerFile("/com/sy/message/templates/outlineDeclaration.ftl","utf-8",map));
  71 +// o.write(freeMarkerModel.freeMarkerFile("/com/sy/message/templates/user.ftl","utf-8",map));
  72 + o.flush();
  73 + o.close();
  74 + }catch (IOException e){
  75 + e.printStackTrace();
  76 + }
  77 +
  78 + }
  79 +
  80 + public String freeMarkerFile(String fileName, String encode, Map data){
  81 + Configuration cfg = new Configuration();
  82 + cfg.setEncoding(Locale.getDefault(),encode);
  83 + Template t = null;
  84 + String result= "";
  85 + try {
  86 + cfg.setDirectoryForTemplateLoading(new File("E:/java/workspace/custom-unified-declaration/src/main/java"));
  87 + t = cfg.getTemplate(fileName);
  88 + t.setEncoding(encode);
  89 + StringWriter stringWriter = new StringWriter();
  90 + t.process(data,stringWriter);
  91 + result = stringWriter.toString();
  92 + System.out.println(result);
  93 + }catch (TemplateException e){
  94 + e.printStackTrace();
  95 + }catch (IOException e){
  96 + e.printStackTrace();
  97 + }
  98 +
  99 + return result;
  100 + }
  101 +
  102 +}
  1 +
  2 +package com.sy.message.generated;
  3 +
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElement;
  7 +import javax.xml.bind.annotation.XmlType;
  8 +
  9 +
  10 +/**
  11 + * 补充申报单回执信息
  12 + *
  13 + * <p>Java class for DecSDResponseType complex type.
  14 + *
  15 + * <p>The following schema fragment specifies the expected content contained within this class.
  16 + *
  17 + * <pre>
  18 + * &lt;complexType name="DecSDResponseType"&gt;
  19 + * &lt;complexContent&gt;
  20 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21 + * &lt;sequence&gt;
  22 + * &lt;element name="PreSupId"&gt;
  23 + * &lt;simpleType&gt;
  24 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  25 + * &lt;maxLength value="18"/&gt;
  26 + * &lt;/restriction&gt;
  27 + * &lt;/simpleType&gt;
  28 + * &lt;/element&gt;
  29 + * &lt;element name="GNo"&gt;
  30 + * &lt;simpleType&gt;
  31 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  32 + * &lt;minLength value="1"/&gt;
  33 + * &lt;maxLength value="2"/&gt;
  34 + * &lt;/restriction&gt;
  35 + * &lt;/simpleType&gt;
  36 + * &lt;/element&gt;
  37 + * &lt;element name="SupType"&gt;
  38 + * &lt;simpleType&gt;
  39 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  40 + * &lt;minLength value="1"/&gt;
  41 + * &lt;maxLength value="1"/&gt;
  42 + * &lt;/restriction&gt;
  43 + * &lt;/simpleType&gt;
  44 + * &lt;/element&gt;
  45 + * &lt;/sequence&gt;
  46 + * &lt;/restriction&gt;
  47 + * &lt;/complexContent&gt;
  48 + * &lt;/complexType&gt;
  49 + * </pre>
  50 + *
  51 + *
  52 + */
  53 +@XmlAccessorType(XmlAccessType.FIELD)
  54 +@XmlType(name = "DecSDResponseType", propOrder = {
  55 + "preSupId",
  56 + "gNo",
  57 + "supType"
  58 +})
  59 +public class DecSDResponseType {
  60 +
  61 + @XmlElement(name = "PreSupId", required = true)
  62 + protected String preSupId;
  63 + @XmlElement(name = "GNo", required = true)
  64 + protected String gNo;
  65 + @XmlElement(name = "SupType", required = true)
  66 + protected String supType;
  67 +
  68 + /**
  69 + * Gets the value of the preSupId property.
  70 + *
  71 + * @return
  72 + * possible object is
  73 + * {@link String }
  74 + *
  75 + */
  76 + public String getPreSupId() {
  77 + return preSupId;
  78 + }
  79 +
  80 + /**
  81 + * Sets the value of the preSupId property.
  82 + *
  83 + * @param value
  84 + * allowed object is
  85 + * {@link String }
  86 + *
  87 + */
  88 + public void setPreSupId(String value) {
  89 + this.preSupId = value;
  90 + }
  91 +
  92 + /**
  93 + * Gets the value of the gNo property.
  94 + *
  95 + * @return
  96 + * possible object is
  97 + * {@link String }
  98 + *
  99 + */
  100 + public String getGNo() {
  101 + return gNo;
  102 + }
  103 +
  104 + /**
  105 + * Sets the value of the gNo property.
  106 + *
  107 + * @param value
  108 + * allowed object is
  109 + * {@link String }
  110 + *
  111 + */
  112 + public void setGNo(String value) {
  113 + this.gNo = value;
  114 + }
  115 +
  116 + /**
  117 + * Gets the value of the supType property.
  118 + *
  119 + * @return
  120 + * possible object is
  121 + * {@link String }
  122 + *
  123 + */
  124 + public String getSupType() {
  125 + return supType;
  126 + }
  127 +
  128 + /**
  129 + * Sets the value of the supType property.
  130 + *
  131 + * @param value
  132 + * allowed object is
  133 + * {@link String }
  134 + *
  135 + */
  136 + public void setSupType(String value) {
  137 + this.supType = value;
  138 + }
  139 +
  140 +}
  1 +
  2 +package com.sy.message.generated;
  3 +
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElement;
  7 +import javax.xml.bind.annotation.XmlType;
  8 +
  9 +
  10 +/**
  11 + * 补充申报单表体信息
  12 + *
  13 + * <p>Java class for DecSupplementListType complex type.
  14 + *
  15 + * <p>The following schema fragment specifies the expected content contained within this class.
  16 + *
  17 + * <pre>
  18 + * &lt;complexType name="DecSupplementListType"&gt;
  19 + * &lt;complexContent&gt;
  20 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21 + * &lt;sequence&gt;
  22 + * &lt;element name="GNo"&gt;
  23 + * &lt;simpleType&gt;
  24 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  25 + * &lt;minLength value="1"/&gt;
  26 + * &lt;maxLength value="2"/&gt;
  27 + * &lt;/restriction&gt;
  28 + * &lt;/simpleType&gt;
  29 + * &lt;/element&gt;
  30 + * &lt;element name="SupType"&gt;
  31 + * &lt;simpleType&gt;
  32 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  33 + * &lt;minLength value="1"/&gt;
  34 + * &lt;maxLength value="1"/&gt;
  35 + * &lt;/restriction&gt;
  36 + * &lt;/simpleType&gt;
  37 + * &lt;/element&gt;
  38 + * &lt;element name="BrandCN"&gt;
  39 + * &lt;simpleType&gt;
  40 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  41 + * &lt;minLength value="0"/&gt;
  42 + * &lt;maxLength value="50"/&gt;
  43 + * &lt;/restriction&gt;
  44 + * &lt;/simpleType&gt;
  45 + * &lt;/element&gt;
  46 + * &lt;element name="BrandEN"&gt;
  47 + * &lt;simpleType&gt;
  48 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  49 + * &lt;minLength value="0"/&gt;
  50 + * &lt;maxLength value="100"/&gt;
  51 + * &lt;/restriction&gt;
  52 + * &lt;/simpleType&gt;
  53 + * &lt;/element&gt;
  54 + * &lt;element name="Buyer"&gt;
  55 + * &lt;simpleType&gt;
  56 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  57 + * &lt;maxLength value="150"/&gt;
  58 + * &lt;/restriction&gt;
  59 + * &lt;/simpleType&gt;
  60 + * &lt;/element&gt;
  61 + * &lt;element name="BuyerContact"&gt;
  62 + * &lt;simpleType&gt;
  63 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  64 + * &lt;maxLength value="50"/&gt;
  65 + * &lt;/restriction&gt;
  66 + * &lt;/simpleType&gt;
  67 + * &lt;/element&gt;
  68 + * &lt;element name="BuyerAddr"&gt;
  69 + * &lt;simpleType&gt;
  70 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  71 + * &lt;maxLength value="255"/&gt;
  72 + * &lt;/restriction&gt;
  73 + * &lt;/simpleType&gt;
  74 + * &lt;/element&gt;
  75 + * &lt;element name="BuyerTel"&gt;
  76 + * &lt;simpleType&gt;
  77 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  78 + * &lt;maxLength value="20"/&gt;
  79 + * &lt;/restriction&gt;
  80 + * &lt;/simpleType&gt;
  81 + * &lt;/element&gt;
  82 + * &lt;element name="Seller"&gt;
  83 + * &lt;simpleType&gt;
  84 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  85 + * &lt;maxLength value="150"/&gt;
  86 + * &lt;/restriction&gt;
  87 + * &lt;/simpleType&gt;
  88 + * &lt;/element&gt;
  89 + * &lt;element name="SellerContact"&gt;
  90 + * &lt;simpleType&gt;
  91 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  92 + * &lt;maxLength value="50"/&gt;
  93 + * &lt;/restriction&gt;
  94 + * &lt;/simpleType&gt;
  95 + * &lt;/element&gt;
  96 + * &lt;element name="SellerAddr"&gt;
  97 + * &lt;simpleType&gt;
  98 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  99 + * &lt;maxLength value="255"/&gt;
  100 + * &lt;/restriction&gt;
  101 + * &lt;/simpleType&gt;
  102 + * &lt;/element&gt;
  103 + * &lt;element name="SellerTel"&gt;
  104 + * &lt;simpleType&gt;
  105 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  106 + * &lt;maxLength value="20"/&gt;
  107 + * &lt;/restriction&gt;
  108 + * &lt;/simpleType&gt;
  109 + * &lt;/element&gt;
  110 + * &lt;element name="Factory"&gt;
  111 + * &lt;simpleType&gt;
  112 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  113 + * &lt;maxLength value="150"/&gt;
  114 + * &lt;/restriction&gt;
  115 + * &lt;/simpleType&gt;
  116 + * &lt;/element&gt;
  117 + * &lt;element name="FactoryContact"&gt;
  118 + * &lt;simpleType&gt;
  119 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  120 + * &lt;maxLength value="50"/&gt;
  121 + * &lt;/restriction&gt;
  122 + * &lt;/simpleType&gt;
  123 + * &lt;/element&gt;
  124 + * &lt;element name="FactoryAddr"&gt;
  125 + * &lt;simpleType&gt;
  126 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  127 + * &lt;maxLength value="255"/&gt;
  128 + * &lt;/restriction&gt;
  129 + * &lt;/simpleType&gt;
  130 + * &lt;/element&gt;
  131 + * &lt;element name="FactoryTel"&gt;
  132 + * &lt;simpleType&gt;
  133 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  134 + * &lt;maxLength value="20"/&gt;
  135 + * &lt;/restriction&gt;
  136 + * &lt;/simpleType&gt;
  137 + * &lt;/element&gt;
  138 + * &lt;element name="ContrNo"&gt;
  139 + * &lt;simpleType&gt;
  140 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  141 + * &lt;maxLength value="20"/&gt;
  142 + * &lt;/restriction&gt;
  143 + * &lt;/simpleType&gt;
  144 + * &lt;/element&gt;
  145 + * &lt;element name="ContrDate"&gt;
  146 + * &lt;simpleType&gt;
  147 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  148 + * &lt;maxLength value="8"/&gt;
  149 + * &lt;/restriction&gt;
  150 + * &lt;/simpleType&gt;
  151 + * &lt;/element&gt;
  152 + * &lt;element name="InvoiceNo"&gt;
  153 + * &lt;simpleType&gt;
  154 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  155 + * &lt;maxLength value="50"/&gt;
  156 + * &lt;/restriction&gt;
  157 + * &lt;/simpleType&gt;
  158 + * &lt;/element&gt;
  159 + * &lt;element name="InvoiceDate"&gt;
  160 + * &lt;simpleType&gt;
  161 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  162 + * &lt;maxLength value="8"/&gt;
  163 + * &lt;/restriction&gt;
  164 + * &lt;/simpleType&gt;
  165 + * &lt;/element&gt;
  166 + * &lt;element name="I_BabRel"&gt;
  167 + * &lt;simpleType&gt;
  168 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  169 + * &lt;maxLength value="20"/&gt;
  170 + * &lt;/restriction&gt;
  171 + * &lt;/simpleType&gt;
  172 + * &lt;/element&gt;
  173 + * &lt;element name="I_PriceEffect"&gt;
  174 + * &lt;simpleType&gt;
  175 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  176 + * &lt;maxLength value="1"/&gt;
  177 + * &lt;/restriction&gt;
  178 + * &lt;/simpleType&gt;
  179 + * &lt;/element&gt;
  180 + * &lt;element name="I_PriceClose"&gt;
  181 + * &lt;simpleType&gt;
  182 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  183 + * &lt;maxLength value="20"/&gt;
  184 + * &lt;/restriction&gt;
  185 + * &lt;/simpleType&gt;
  186 + * &lt;/element&gt;
  187 + * &lt;element name="I_OtherLimited"&gt;
  188 + * &lt;simpleType&gt;
  189 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  190 + * &lt;maxLength value="1"/&gt;
  191 + * &lt;/restriction&gt;
  192 + * &lt;/simpleType&gt;
  193 + * &lt;/element&gt;
  194 + * &lt;element name="I_OtherEffect"&gt;
  195 + * &lt;simpleType&gt;
  196 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  197 + * &lt;maxLength value="1"/&gt;
  198 + * &lt;/restriction&gt;
  199 + * &lt;/simpleType&gt;
  200 + * &lt;/element&gt;
  201 + * &lt;element name="I_Note1"&gt;
  202 + * &lt;simpleType&gt;
  203 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  204 + * &lt;maxLength value="255"/&gt;
  205 + * &lt;/restriction&gt;
  206 + * &lt;/simpleType&gt;
  207 + * &lt;/element&gt;
  208 + * &lt;element name="I_IsUsefee"&gt;
  209 + * &lt;simpleType&gt;
  210 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  211 + * &lt;maxLength value="1"/&gt;
  212 + * &lt;/restriction&gt;
  213 + * &lt;/simpleType&gt;
  214 + * &lt;/element&gt;
  215 + * &lt;element name="I_IsProfit"&gt;
  216 + * &lt;simpleType&gt;
  217 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  218 + * &lt;maxLength value="1"/&gt;
  219 + * &lt;/restriction&gt;
  220 + * &lt;/simpleType&gt;
  221 + * &lt;/element&gt;
  222 + * &lt;element name="I_Note2"&gt;
  223 + * &lt;simpleType&gt;
  224 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  225 + * &lt;maxLength value="255"/&gt;
  226 + * &lt;/restriction&gt;
  227 + * &lt;/simpleType&gt;
  228 + * &lt;/element&gt;
  229 + * &lt;element name="Curr"&gt;
  230 + * &lt;simpleType&gt;
  231 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  232 + * &lt;maxLength value="3"/&gt;
  233 + * &lt;minLength value="3"/&gt;
  234 + * &lt;/restriction&gt;
  235 + * &lt;/simpleType&gt;
  236 + * &lt;/element&gt;
  237 + * &lt;element name="InvoicePrice"&gt;
  238 + * &lt;simpleType&gt;
  239 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  240 + * &lt;maxLength value="20"/&gt;
  241 + * &lt;/restriction&gt;
  242 + * &lt;/simpleType&gt;
  243 + * &lt;/element&gt;
  244 + * &lt;element name="InvoiceAmount"&gt;
  245 + * &lt;simpleType&gt;
  246 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  247 + * &lt;maxLength value="20"/&gt;
  248 + * &lt;/restriction&gt;
  249 + * &lt;/simpleType&gt;
  250 + * &lt;/element&gt;
  251 + * &lt;element name="InvoiceNote"&gt;
  252 + * &lt;simpleType&gt;
  253 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  254 + * &lt;maxLength value="255"/&gt;
  255 + * &lt;/restriction&gt;
  256 + * &lt;/simpleType&gt;
  257 + * &lt;/element&gt;
  258 + * &lt;element name="GoodsPrice"&gt;
  259 + * &lt;simpleType&gt;
  260 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  261 + * &lt;maxLength value="20"/&gt;
  262 + * &lt;/restriction&gt;
  263 + * &lt;/simpleType&gt;
  264 + * &lt;/element&gt;
  265 + * &lt;element name="GoodsAmount"&gt;
  266 + * &lt;simpleType&gt;
  267 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  268 + * &lt;maxLength value="20"/&gt;
  269 + * &lt;/restriction&gt;
  270 + * &lt;/simpleType&gt;
  271 + * &lt;/element&gt;
  272 + * &lt;element name="GoodsNote"&gt;
  273 + * &lt;simpleType&gt;
  274 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  275 + * &lt;maxLength value="255"/&gt;
  276 + * &lt;/restriction&gt;
  277 + * &lt;/simpleType&gt;
  278 + * &lt;/element&gt;
  279 + * &lt;element name="I_CommissionPrice"&gt;
  280 + * &lt;simpleType&gt;
  281 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  282 + * &lt;maxLength value="20"/&gt;
  283 + * &lt;/restriction&gt;
  284 + * &lt;/simpleType&gt;
  285 + * &lt;/element&gt;
  286 + * &lt;element name="I_CommissionAmount"&gt;
  287 + * &lt;simpleType&gt;
  288 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  289 + * &lt;maxLength value="20"/&gt;
  290 + * &lt;/restriction&gt;
  291 + * &lt;/simpleType&gt;
  292 + * &lt;/element&gt;
  293 + * &lt;element name="I_CommissionNote"&gt;
  294 + * &lt;simpleType&gt;
  295 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  296 + * &lt;maxLength value="255"/&gt;
  297 + * &lt;/restriction&gt;
  298 + * &lt;/simpleType&gt;
  299 + * &lt;/element&gt;
  300 + * &lt;element name="I_ContainerPrice"&gt;
  301 + * &lt;simpleType&gt;
  302 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  303 + * &lt;maxLength value="20"/&gt;
  304 + * &lt;/restriction&gt;
  305 + * &lt;/simpleType&gt;
  306 + * &lt;/element&gt;
  307 + * &lt;element name="I_ContainerAmount"&gt;
  308 + * &lt;simpleType&gt;
  309 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  310 + * &lt;maxLength value="20"/&gt;
  311 + * &lt;/restriction&gt;
  312 + * &lt;/simpleType&gt;
  313 + * &lt;/element&gt;
  314 + * &lt;element name="I_ContainerNote"&gt;
  315 + * &lt;simpleType&gt;
  316 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  317 + * &lt;maxLength value="255"/&gt;
  318 + * &lt;/restriction&gt;
  319 + * &lt;/simpleType&gt;
  320 + * &lt;/element&gt;
  321 + * &lt;element name="I_PackPrice"&gt;
  322 + * &lt;simpleType&gt;
  323 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  324 + * &lt;maxLength value="20"/&gt;
  325 + * &lt;/restriction&gt;
  326 + * &lt;/simpleType&gt;
  327 + * &lt;/element&gt;
  328 + * &lt;element name="I_PackAmount"&gt;
  329 + * &lt;simpleType&gt;
  330 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  331 + * &lt;maxLength value="20"/&gt;
  332 + * &lt;/restriction&gt;
  333 + * &lt;/simpleType&gt;
  334 + * &lt;/element&gt;
  335 + * &lt;element name="I_PackNote"&gt;
  336 + * &lt;simpleType&gt;
  337 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  338 + * &lt;maxLength value="255"/&gt;
  339 + * &lt;/restriction&gt;
  340 + * &lt;/simpleType&gt;
  341 + * &lt;/element&gt;
  342 + * &lt;element name="I_PartPrice"&gt;
  343 + * &lt;simpleType&gt;
  344 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  345 + * &lt;maxLength value="20"/&gt;
  346 + * &lt;/restriction&gt;
  347 + * &lt;/simpleType&gt;
  348 + * &lt;/element&gt;
  349 + * &lt;element name="I_PartAmount"&gt;
  350 + * &lt;simpleType&gt;
  351 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  352 + * &lt;maxLength value="20"/&gt;
  353 + * &lt;/restriction&gt;
  354 + * &lt;/simpleType&gt;
  355 + * &lt;/element&gt;
  356 + * &lt;element name="I_PartNote"&gt;
  357 + * &lt;simpleType&gt;
  358 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  359 + * &lt;maxLength value="255"/&gt;
  360 + * &lt;/restriction&gt;
  361 + * &lt;/simpleType&gt;
  362 + * &lt;/element&gt;
  363 + * &lt;element name="I_ToolPrice"&gt;
  364 + * &lt;simpleType&gt;
  365 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  366 + * &lt;maxLength value="20"/&gt;
  367 + * &lt;/restriction&gt;
  368 + * &lt;/simpleType&gt;
  369 + * &lt;/element&gt;
  370 + * &lt;element name="I_ToolAmount"&gt;
  371 + * &lt;simpleType&gt;
  372 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  373 + * &lt;maxLength value="20"/&gt;
  374 + * &lt;/restriction&gt;
  375 + * &lt;/simpleType&gt;
  376 + * &lt;/element&gt;
  377 + * &lt;element name="I_ToolNote"&gt;
  378 + * &lt;simpleType&gt;
  379 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  380 + * &lt;maxLength value="255"/&gt;
  381 + * &lt;/restriction&gt;
  382 + * &lt;/simpleType&gt;
  383 + * &lt;/element&gt;
  384 + * &lt;element name="I_LossPrice"&gt;
  385 + * &lt;simpleType&gt;
  386 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  387 + * &lt;maxLength value="20"/&gt;
  388 + * &lt;/restriction&gt;
  389 + * &lt;/simpleType&gt;
  390 + * &lt;/element&gt;
  391 + * &lt;element name="I_LossAmount"&gt;
  392 + * &lt;simpleType&gt;
  393 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  394 + * &lt;maxLength value="20"/&gt;
  395 + * &lt;/restriction&gt;
  396 + * &lt;/simpleType&gt;
  397 + * &lt;/element&gt;
  398 + * &lt;element name="I_LossNote"&gt;
  399 + * &lt;simpleType&gt;
  400 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  401 + * &lt;maxLength value="255"/&gt;
  402 + * &lt;/restriction&gt;
  403 + * &lt;/simpleType&gt;
  404 + * &lt;/element&gt;
  405 + * &lt;element name="I_DesignPrice"&gt;
  406 + * &lt;simpleType&gt;
  407 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  408 + * &lt;maxLength value="20"/&gt;
  409 + * &lt;/restriction&gt;
  410 + * &lt;/simpleType&gt;
  411 + * &lt;/element&gt;
  412 + * &lt;element name="I_DesignAmount"&gt;
  413 + * &lt;simpleType&gt;
  414 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  415 + * &lt;maxLength value="20"/&gt;
  416 + * &lt;/restriction&gt;
  417 + * &lt;/simpleType&gt;
  418 + * &lt;/element&gt;
  419 + * &lt;element name="I_DesignNote"&gt;
  420 + * &lt;simpleType&gt;
  421 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  422 + * &lt;maxLength value="255"/&gt;
  423 + * &lt;/restriction&gt;
  424 + * &lt;/simpleType&gt;
  425 + * &lt;/element&gt;
  426 + * &lt;element name="I_UsefeePrice"&gt;
  427 + * &lt;simpleType&gt;
  428 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  429 + * &lt;maxLength value="20"/&gt;
  430 + * &lt;/restriction&gt;
  431 + * &lt;/simpleType&gt;
  432 + * &lt;/element&gt;
  433 + * &lt;element name="I_UsefeeAmount"&gt;
  434 + * &lt;simpleType&gt;
  435 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  436 + * &lt;maxLength value="20"/&gt;
  437 + * &lt;/restriction&gt;
  438 + * &lt;/simpleType&gt;
  439 + * &lt;/element&gt;
  440 + * &lt;element name="I_UsefeeNote"&gt;
  441 + * &lt;simpleType&gt;
  442 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  443 + * &lt;maxLength value="255"/&gt;
  444 + * &lt;/restriction&gt;
  445 + * &lt;/simpleType&gt;
  446 + * &lt;/element&gt;
  447 + * &lt;element name="I_ProfitPrice"&gt;
  448 + * &lt;simpleType&gt;
  449 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  450 + * &lt;maxLength value="20"/&gt;
  451 + * &lt;/restriction&gt;
  452 + * &lt;/simpleType&gt;
  453 + * &lt;/element&gt;
  454 + * &lt;element name="I_ProfitAmount"&gt;
  455 + * &lt;simpleType&gt;
  456 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  457 + * &lt;maxLength value="20"/&gt;
  458 + * &lt;/restriction&gt;
  459 + * &lt;/simpleType&gt;
  460 + * &lt;/element&gt;
  461 + * &lt;element name="I_ProfitNote"&gt;
  462 + * &lt;simpleType&gt;
  463 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  464 + * &lt;maxLength value="255"/&gt;
  465 + * &lt;/restriction&gt;
  466 + * &lt;/simpleType&gt;
  467 + * &lt;/element&gt;
  468 + * &lt;element name="I_FeePrice"&gt;
  469 + * &lt;simpleType&gt;
  470 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  471 + * &lt;maxLength value="20"/&gt;
  472 + * &lt;/restriction&gt;
  473 + * &lt;/simpleType&gt;
  474 + * &lt;/element&gt;
  475 + * &lt;element name="I_FeeAmount"&gt;
  476 + * &lt;simpleType&gt;
  477 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  478 + * &lt;maxLength value="20"/&gt;
  479 + * &lt;/restriction&gt;
  480 + * &lt;/simpleType&gt;
  481 + * &lt;/element&gt;
  482 + * &lt;element name="I_FeeNote"&gt;
  483 + * &lt;simpleType&gt;
  484 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  485 + * &lt;maxLength value="255"/&gt;
  486 + * &lt;/restriction&gt;
  487 + * &lt;/simpleType&gt;
  488 + * &lt;/element&gt;
  489 + * &lt;element name="I_OtherPrice"&gt;
  490 + * &lt;simpleType&gt;
  491 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  492 + * &lt;maxLength value="20"/&gt;
  493 + * &lt;/restriction&gt;
  494 + * &lt;/simpleType&gt;
  495 + * &lt;/element&gt;
  496 + * &lt;element name="I_OtherAmount"&gt;
  497 + * &lt;simpleType&gt;
  498 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  499 + * &lt;maxLength value="20"/&gt;
  500 + * &lt;/restriction&gt;
  501 + * &lt;/simpleType&gt;
  502 + * &lt;/element&gt;
  503 + * &lt;element name="I_OtherNote"&gt;
  504 + * &lt;simpleType&gt;
  505 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  506 + * &lt;maxLength value="255"/&gt;
  507 + * &lt;/restriction&gt;
  508 + * &lt;/simpleType&gt;
  509 + * &lt;/element&gt;
  510 + * &lt;element name="I_InsurPrice"&gt;
  511 + * &lt;simpleType&gt;
  512 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  513 + * &lt;maxLength value="20"/&gt;
  514 + * &lt;/restriction&gt;
  515 + * &lt;/simpleType&gt;
  516 + * &lt;/element&gt;
  517 + * &lt;element name="I_InsurAmount"&gt;
  518 + * &lt;simpleType&gt;
  519 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  520 + * &lt;maxLength value="20"/&gt;
  521 + * &lt;/restriction&gt;
  522 + * &lt;/simpleType&gt;
  523 + * &lt;/element&gt;
  524 + * &lt;element name="I_InsurNote"&gt;
  525 + * &lt;simpleType&gt;
  526 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  527 + * &lt;maxLength value="255"/&gt;
  528 + * &lt;/restriction&gt;
  529 + * &lt;/simpleType&gt;
  530 + * &lt;/element&gt;
  531 + * &lt;element name="E_IsDutyDel"&gt;
  532 + * &lt;simpleType&gt;
  533 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  534 + * &lt;maxLength value="1"/&gt;
  535 + * &lt;/restriction&gt;
  536 + * &lt;/simpleType&gt;
  537 + * &lt;/element&gt;
  538 + * &lt;element name="GNameOther"&gt;
  539 + * &lt;simpleType&gt;
  540 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  541 + * &lt;maxLength value="255"/&gt;
  542 + * &lt;/restriction&gt;
  543 + * &lt;/simpleType&gt;
  544 + * &lt;/element&gt;
  545 + * &lt;element name="CodeTsOther"&gt;
  546 + * &lt;simpleType&gt;
  547 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  548 + * &lt;maxLength value="10"/&gt;
  549 + * &lt;minLength value="10"/&gt;
  550 + * &lt;/restriction&gt;
  551 + * &lt;/simpleType&gt;
  552 + * &lt;/element&gt;
  553 + * &lt;element name="IsClassDecision"&gt;
  554 + * &lt;simpleType&gt;
  555 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  556 + * &lt;maxLength value="1"/&gt;
  557 + * &lt;minLength value="1"/&gt;
  558 + * &lt;/restriction&gt;
  559 + * &lt;/simpleType&gt;
  560 + * &lt;/element&gt;
  561 + * &lt;element name="DecisionNO"&gt;
  562 + * &lt;simpleType&gt;
  563 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  564 + * &lt;maxLength value="30"/&gt;
  565 + * &lt;/restriction&gt;
  566 + * &lt;/simpleType&gt;
  567 + * &lt;/element&gt;
  568 + * &lt;element name="CodeTsDecision"&gt;
  569 + * &lt;simpleType&gt;
  570 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  571 + * &lt;minLength value="10"/&gt;
  572 + * &lt;maxLength value="10"/&gt;
  573 + * &lt;/restriction&gt;
  574 + * &lt;/simpleType&gt;
  575 + * &lt;/element&gt;
  576 + * &lt;element name="DecisionCus"&gt;
  577 + * &lt;simpleType&gt;
  578 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  579 + * &lt;minLength value="4"/&gt;
  580 + * &lt;maxLength value="4"/&gt;
  581 + * &lt;/restriction&gt;
  582 + * &lt;/simpleType&gt;
  583 + * &lt;/element&gt;
  584 + * &lt;element name="IsSampleTest"&gt;
  585 + * &lt;simpleType&gt;
  586 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  587 + * &lt;maxLength value="1"/&gt;
  588 + * &lt;minLength value="1"/&gt;
  589 + * &lt;/restriction&gt;
  590 + * &lt;/simpleType&gt;
  591 + * &lt;/element&gt;
  592 + * &lt;element name="GOptions"&gt;
  593 + * &lt;simpleType&gt;
  594 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  595 + * &lt;maxLength value="32"/&gt;
  596 + * &lt;/restriction&gt;
  597 + * &lt;/simpleType&gt;
  598 + * &lt;/element&gt;
  599 + * &lt;element name="TrafMode"&gt;
  600 + * &lt;simpleType&gt;
  601 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  602 + * &lt;maxLength value="1"/&gt;
  603 + * &lt;minLength value="1"/&gt;
  604 + * &lt;/restriction&gt;
  605 + * &lt;/simpleType&gt;
  606 + * &lt;/element&gt;
  607 + * &lt;element name="IsDirectTraf"&gt;
  608 + * &lt;simpleType&gt;
  609 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  610 + * &lt;maxLength value="1"/&gt;
  611 + * &lt;minLength value="1"/&gt;
  612 + * &lt;/restriction&gt;
  613 + * &lt;/simpleType&gt;
  614 + * &lt;/element&gt;
  615 + * &lt;element name="TransitCountry"&gt;
  616 + * &lt;simpleType&gt;
  617 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  618 + * &lt;maxLength value="20"/&gt;
  619 + * &lt;/restriction&gt;
  620 + * &lt;/simpleType&gt;
  621 + * &lt;/element&gt;
  622 + * &lt;element name="DestPort"&gt;
  623 + * &lt;simpleType&gt;
  624 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  625 + * &lt;maxLength value="4"/&gt;
  626 + * &lt;minLength value="4"/&gt;
  627 + * &lt;/restriction&gt;
  628 + * &lt;/simpleType&gt;
  629 + * &lt;/element&gt;
  630 + * &lt;element name="DeclPort"&gt;
  631 + * &lt;simpleType&gt;
  632 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  633 + * &lt;maxLength value="4"/&gt;
  634 + * &lt;minLength value="4"/&gt;
  635 + * &lt;/restriction&gt;
  636 + * &lt;/simpleType&gt;
  637 + * &lt;/element&gt;
  638 + * &lt;element name="BillNo"&gt;
  639 + * &lt;simpleType&gt;
  640 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  641 + * &lt;maxLength value="32"/&gt;
  642 + * &lt;/restriction&gt;
  643 + * &lt;/simpleType&gt;
  644 + * &lt;/element&gt;
  645 + * &lt;element name="OriginCountry"&gt;
  646 + * &lt;simpleType&gt;
  647 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  648 + * &lt;maxLength value="3"/&gt;
  649 + * &lt;minLength value="3"/&gt;
  650 + * &lt;/restriction&gt;
  651 + * &lt;/simpleType&gt;
  652 + * &lt;/element&gt;
  653 + * &lt;element name="OriginMark"&gt;
  654 + * &lt;simpleType&gt;
  655 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  656 + * &lt;maxLength value="5"/&gt;
  657 + * &lt;/restriction&gt;
  658 + * &lt;/simpleType&gt;
  659 + * &lt;/element&gt;
  660 + * &lt;element name="CertCountry"&gt;
  661 + * &lt;simpleType&gt;
  662 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  663 + * &lt;maxLength value="30"/&gt;
  664 + * &lt;/restriction&gt;
  665 + * &lt;/simpleType&gt;
  666 + * &lt;/element&gt;
  667 + * &lt;element name="CertNO"&gt;
  668 + * &lt;simpleType&gt;
  669 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  670 + * &lt;maxLength value="30"/&gt;
  671 + * &lt;/restriction&gt;
  672 + * &lt;/simpleType&gt;
  673 + * &lt;/element&gt;
  674 + * &lt;element name="CertStandard"&gt;
  675 + * &lt;simpleType&gt;
  676 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  677 + * &lt;minLength value="1"/&gt;
  678 + * &lt;maxLength value="1"/&gt;
  679 + * &lt;/restriction&gt;
  680 + * &lt;/simpleType&gt;
  681 + * &lt;/element&gt;
  682 + * &lt;element name="OtherNote"&gt;
  683 + * &lt;simpleType&gt;
  684 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  685 + * &lt;maxLength value="1000"/&gt;
  686 + * &lt;/restriction&gt;
  687 + * &lt;/simpleType&gt;
  688 + * &lt;/element&gt;
  689 + * &lt;element name="IsSecret"&gt;
  690 + * &lt;simpleType&gt;
  691 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  692 + * &lt;minLength value="1"/&gt;
  693 + * &lt;maxLength value="1"/&gt;
  694 + * &lt;/restriction&gt;
  695 + * &lt;/simpleType&gt;
  696 + * &lt;/element&gt;
  697 + * &lt;element name="AgentType"&gt;
  698 + * &lt;simpleType&gt;
  699 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  700 + * &lt;minLength value="1"/&gt;
  701 + * &lt;maxLength value="1"/&gt;
  702 + * &lt;/restriction&gt;
  703 + * &lt;/simpleType&gt;
  704 + * &lt;/element&gt;
  705 + * &lt;element name="DeclAddr"&gt;
  706 + * &lt;simpleType&gt;
  707 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  708 + * &lt;minLength value="0"/&gt;
  709 + * &lt;maxLength value="255"/&gt;
  710 + * &lt;/restriction&gt;
  711 + * &lt;/simpleType&gt;
  712 + * &lt;/element&gt;
  713 + * &lt;element name="DeclPost"&gt;
  714 + * &lt;simpleType&gt;
  715 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  716 + * &lt;minLength value="0"/&gt;
  717 + * &lt;maxLength value="10"/&gt;
  718 + * &lt;/restriction&gt;
  719 + * &lt;/simpleType&gt;
  720 + * &lt;/element&gt;
  721 + * &lt;element name="DeclTel"&gt;
  722 + * &lt;simpleType&gt;
  723 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  724 + * &lt;minLength value="0"/&gt;
  725 + * &lt;maxLength value="20"/&gt;
  726 + * &lt;/restriction&gt;
  727 + * &lt;/simpleType&gt;
  728 + * &lt;/element&gt;
  729 + * &lt;/sequence&gt;
  730 + * &lt;/restriction&gt;
  731 + * &lt;/complexContent&gt;
  732 + * &lt;/complexType&gt;
  733 + * </pre>
  734 + *
  735 + *
  736 + */
  737 +@XmlAccessorType(XmlAccessType.FIELD)
  738 +@XmlType(name = "DecSupplementListType", propOrder = {
  739 + "gNo",
  740 + "supType",
  741 + "brandCN",
  742 + "brandEN",
  743 + "buyer",
  744 + "buyerContact",
  745 + "buyerAddr",
  746 + "buyerTel",
  747 + "seller",
  748 + "sellerContact",
  749 + "sellerAddr",
  750 + "sellerTel",
  751 + "factory",
  752 + "factoryContact",
  753 + "factoryAddr",
  754 + "factoryTel",
  755 + "contrNo",
  756 + "contrDate",
  757 + "invoiceNo",
  758 + "invoiceDate",
  759 + "iBabRel",
  760 + "iPriceEffect",
  761 + "iPriceClose",
  762 + "iOtherLimited",
  763 + "iOtherEffect",
  764 + "iNote1",
  765 + "iIsUsefee",
  766 + "iIsProfit",
  767 + "iNote2",
  768 + "curr",
  769 + "invoicePrice",
  770 + "invoiceAmount",
  771 + "invoiceNote",
  772 + "goodsPrice",
  773 + "goodsAmount",
  774 + "goodsNote",
  775 + "iCommissionPrice",
  776 + "iCommissionAmount",
  777 + "iCommissionNote",
  778 + "iContainerPrice",
  779 + "iContainerAmount",
  780 + "iContainerNote",
  781 + "iPackPrice",
  782 + "iPackAmount",
  783 + "iPackNote",
  784 + "iPartPrice",
  785 + "iPartAmount",
  786 + "iPartNote",
  787 + "iToolPrice",
  788 + "iToolAmount",
  789 + "iToolNote",
  790 + "iLossPrice",
  791 + "iLossAmount",
  792 + "iLossNote",
  793 + "iDesignPrice",
  794 + "iDesignAmount",
  795 + "iDesignNote",
  796 + "iUsefeePrice",
  797 + "iUsefeeAmount",
  798 + "iUsefeeNote",
  799 + "iProfitPrice",
  800 + "iProfitAmount",
  801 + "iProfitNote",
  802 + "iFeePrice",
  803 + "iFeeAmount",
  804 + "iFeeNote",
  805 + "iOtherPrice",
  806 + "iOtherAmount",
  807 + "iOtherNote",
  808 + "iInsurPrice",
  809 + "iInsurAmount",
  810 + "iInsurNote",
  811 + "eIsDutyDel",
  812 + "gNameOther",
  813 + "codeTsOther",
  814 + "isClassDecision",
  815 + "decisionNO",
  816 + "codeTsDecision",
  817 + "decisionCus",
  818 + "isSampleTest",
  819 + "gOptions",
  820 + "trafMode",
  821 + "isDirectTraf",
  822 + "transitCountry",
  823 + "destPort",
  824 + "declPort",
  825 + "billNo",
  826 + "originCountry",
  827 + "originMark",
  828 + "certCountry",
  829 + "certNO",
  830 + "certStandard",
  831 + "otherNote",
  832 + "isSecret",
  833 + "agentType",
  834 + "declAddr",
  835 + "declPost",
  836 + "declTel"
  837 +})
  838 +public class DecSupplementListType {
  839 +
  840 + @XmlElement(name = "GNo", required = true)
  841 + protected String gNo;
  842 + @XmlElement(name = "SupType", required = true)
  843 + protected String supType;
  844 + @XmlElement(name = "BrandCN", required = true)
  845 + protected String brandCN;
  846 + @XmlElement(name = "BrandEN", required = true)
  847 + protected String brandEN;
  848 + @XmlElement(name = "Buyer", required = true)
  849 + protected String buyer;
  850 + @XmlElement(name = "BuyerContact", required = true)
  851 + protected String buyerContact;
  852 + @XmlElement(name = "BuyerAddr", required = true)
  853 + protected String buyerAddr;
  854 + @XmlElement(name = "BuyerTel", required = true)
  855 + protected String buyerTel;
  856 + @XmlElement(name = "Seller", required = true)
  857 + protected String seller;
  858 + @XmlElement(name = "SellerContact", required = true)
  859 + protected String sellerContact;
  860 + @XmlElement(name = "SellerAddr", required = true)
  861 + protected String sellerAddr;
  862 + @XmlElement(name = "SellerTel", required = true)
  863 + protected String sellerTel;
  864 + @XmlElement(name = "Factory", required = true)
  865 + protected String factory;
  866 + @XmlElement(name = "FactoryContact", required = true)
  867 + protected String factoryContact;
  868 + @XmlElement(name = "FactoryAddr", required = true)
  869 + protected String factoryAddr;
  870 + @XmlElement(name = "FactoryTel", required = true)
  871 + protected String factoryTel;
  872 + @XmlElement(name = "ContrNo", required = true)
  873 + protected String contrNo;
  874 + @XmlElement(name = "ContrDate", required = true)
  875 + protected String contrDate;
  876 + @XmlElement(name = "InvoiceNo", required = true)
  877 + protected String invoiceNo;
  878 + @XmlElement(name = "InvoiceDate", required = true)
  879 + protected String invoiceDate;
  880 + @XmlElement(name = "I_BabRel", required = true)
  881 + protected String iBabRel;
  882 + @XmlElement(name = "I_PriceEffect", required = true)
  883 + protected String iPriceEffect;
  884 + @XmlElement(name = "I_PriceClose", required = true)
  885 + protected String iPriceClose;
  886 + @XmlElement(name = "I_OtherLimited", required = true)
  887 + protected String iOtherLimited;
  888 + @XmlElement(name = "I_OtherEffect", required = true)
  889 + protected String iOtherEffect;
  890 + @XmlElement(name = "I_Note1", required = true)
  891 + protected String iNote1;
  892 + @XmlElement(name = "I_IsUsefee", required = true)
  893 + protected String iIsUsefee;
  894 + @XmlElement(name = "I_IsProfit", required = true)
  895 + protected String iIsProfit;
  896 + @XmlElement(name = "I_Note2", required = true)
  897 + protected String iNote2;
  898 + @XmlElement(name = "Curr", required = true)
  899 + protected String curr;
  900 + @XmlElement(name = "InvoicePrice", required = true)
  901 + protected String invoicePrice;
  902 + @XmlElement(name = "InvoiceAmount", required = true)
  903 + protected String invoiceAmount;
  904 + @XmlElement(name = "InvoiceNote", required = true)
  905 + protected String invoiceNote;
  906 + @XmlElement(name = "GoodsPrice", required = true)
  907 + protected String goodsPrice;
  908 + @XmlElement(name = "GoodsAmount", required = true)
  909 + protected String goodsAmount;
  910 + @XmlElement(name = "GoodsNote", required = true)
  911 + protected String goodsNote;
  912 + @XmlElement(name = "I_CommissionPrice", required = true)
  913 + protected String iCommissionPrice;
  914 + @XmlElement(name = "I_CommissionAmount", required = true)
  915 + protected String iCommissionAmount;
  916 + @XmlElement(name = "I_CommissionNote", required = true)
  917 + protected String iCommissionNote;
  918 + @XmlElement(name = "I_ContainerPrice", required = true)
  919 + protected String iContainerPrice;
  920 + @XmlElement(name = "I_ContainerAmount", required = true)
  921 + protected String iContainerAmount;
  922 + @XmlElement(name = "I_ContainerNote", required = true)
  923 + protected String iContainerNote;
  924 + @XmlElement(name = "I_PackPrice", required = true)
  925 + protected String iPackPrice;
  926 + @XmlElement(name = "I_PackAmount", required = true)
  927 + protected String iPackAmount;
  928 + @XmlElement(name = "I_PackNote", required = true)
  929 + protected String iPackNote;
  930 + @XmlElement(name = "I_PartPrice", required = true)
  931 + protected String iPartPrice;
  932 + @XmlElement(name = "I_PartAmount", required = true)
  933 + protected String iPartAmount;
  934 + @XmlElement(name = "I_PartNote", required = true)
  935 + protected String iPartNote;
  936 + @XmlElement(name = "I_ToolPrice", required = true)
  937 + protected String iToolPrice;
  938 + @XmlElement(name = "I_ToolAmount", required = true)
  939 + protected String iToolAmount;
  940 + @XmlElement(name = "I_ToolNote", required = true)
  941 + protected String iToolNote;
  942 + @XmlElement(name = "I_LossPrice", required = true)
  943 + protected String iLossPrice;
  944 + @XmlElement(name = "I_LossAmount", required = true)
  945 + protected String iLossAmount;
  946 + @XmlElement(name = "I_LossNote", required = true)
  947 + protected String iLossNote;
  948 + @XmlElement(name = "I_DesignPrice", required = true)
  949 + protected String iDesignPrice;
  950 + @XmlElement(name = "I_DesignAmount", required = true)
  951 + protected String iDesignAmount;
  952 + @XmlElement(name = "I_DesignNote", required = true)
  953 + protected String iDesignNote;
  954 + @XmlElement(name = "I_UsefeePrice", required = true)
  955 + protected String iUsefeePrice;
  956 + @XmlElement(name = "I_UsefeeAmount", required = true)
  957 + protected String iUsefeeAmount;
  958 + @XmlElement(name = "I_UsefeeNote", required = true)
  959 + protected String iUsefeeNote;
  960 + @XmlElement(name = "I_ProfitPrice", required = true)
  961 + protected String iProfitPrice;
  962 + @XmlElement(name = "I_ProfitAmount", required = true)
  963 + protected String iProfitAmount;
  964 + @XmlElement(name = "I_ProfitNote", required = true)
  965 + protected String iProfitNote;
  966 + @XmlElement(name = "I_FeePrice", required = true)
  967 + protected String iFeePrice;
  968 + @XmlElement(name = "I_FeeAmount", required = true)
  969 + protected String iFeeAmount;
  970 + @XmlElement(name = "I_FeeNote", required = true)
  971 + protected String iFeeNote;
  972 + @XmlElement(name = "I_OtherPrice", required = true)
  973 + protected String iOtherPrice;
  974 + @XmlElement(name = "I_OtherAmount", required = true)
  975 + protected String iOtherAmount;
  976 + @XmlElement(name = "I_OtherNote", required = true)
  977 + protected String iOtherNote;
  978 + @XmlElement(name = "I_InsurPrice", required = true)
  979 + protected String iInsurPrice;
  980 + @XmlElement(name = "I_InsurAmount", required = true)
  981 + protected String iInsurAmount;
  982 + @XmlElement(name = "I_InsurNote", required = true)
  983 + protected String iInsurNote;
  984 + @XmlElement(name = "E_IsDutyDel", required = true)
  985 + protected String eIsDutyDel;
  986 + @XmlElement(name = "GNameOther", required = true)
  987 + protected String gNameOther;
  988 + @XmlElement(name = "CodeTsOther", required = true)
  989 + protected String codeTsOther;
  990 + @XmlElement(name = "IsClassDecision", required = true)
  991 + protected String isClassDecision;
  992 + @XmlElement(name = "DecisionNO", required = true)
  993 + protected String decisionNO;
  994 + @XmlElement(name = "CodeTsDecision", required = true)
  995 + protected String codeTsDecision;
  996 + @XmlElement(name = "DecisionCus", required = true)
  997 + protected String decisionCus;
  998 + @XmlElement(name = "IsSampleTest", required = true)
  999 + protected String isSampleTest;
  1000 + @XmlElement(name = "GOptions", required = true)
  1001 + protected String gOptions;
  1002 + @XmlElement(name = "TrafMode", required = true)
  1003 + protected String trafMode;
  1004 + @XmlElement(name = "IsDirectTraf", required = true)
  1005 + protected String isDirectTraf;
  1006 + @XmlElement(name = "TransitCountry", required = true)
  1007 + protected String transitCountry;
  1008 + @XmlElement(name = "DestPort", required = true)
  1009 + protected String destPort;
  1010 + @XmlElement(name = "DeclPort", required = true)
  1011 + protected String declPort;
  1012 + @XmlElement(name = "BillNo", required = true)
  1013 + protected String billNo;
  1014 + @XmlElement(name = "OriginCountry", required = true)
  1015 + protected String originCountry;
  1016 + @XmlElement(name = "OriginMark", required = true)
  1017 + protected String originMark;
  1018 + @XmlElement(name = "CertCountry", required = true)
  1019 + protected String certCountry;
  1020 + @XmlElement(name = "CertNO", required = true)
  1021 + protected String certNO;
  1022 + @XmlElement(name = "CertStandard", required = true)
  1023 + protected String certStandard;
  1024 + @XmlElement(name = "OtherNote", required = true)
  1025 + protected String otherNote;
  1026 + @XmlElement(name = "IsSecret", required = true)
  1027 + protected String isSecret;
  1028 + @XmlElement(name = "AgentType", required = true)
  1029 + protected String agentType;
  1030 + @XmlElement(name = "DeclAddr", required = true)
  1031 + protected String declAddr;
  1032 + @XmlElement(name = "DeclPost", required = true)
  1033 + protected String declPost;
  1034 + @XmlElement(name = "DeclTel", required = true)
  1035 + protected String declTel;
  1036 +
  1037 + /**
  1038 + * Gets the value of the gNo property.
  1039 + *
  1040 + * @return
  1041 + * possible object is
  1042 + * {@link String }
  1043 + *
  1044 + */
  1045 + public String getGNo() {
  1046 + return gNo;
  1047 + }
  1048 +
  1049 + /**
  1050 + * Sets the value of the gNo property.
  1051 + *
  1052 + * @param value
  1053 + * allowed object is
  1054 + * {@link String }
  1055 + *
  1056 + */
  1057 + public void setGNo(String value) {
  1058 + this.gNo = value;
  1059 + }
  1060 +
  1061 + /**
  1062 + * Gets the value of the supType property.
  1063 + *
  1064 + * @return
  1065 + * possible object is
  1066 + * {@link String }
  1067 + *
  1068 + */
  1069 + public String getSupType() {
  1070 + return supType;
  1071 + }
  1072 +
  1073 + /**
  1074 + * Sets the value of the supType property.
  1075 + *
  1076 + * @param value
  1077 + * allowed object is
  1078 + * {@link String }
  1079 + *
  1080 + */
  1081 + public void setSupType(String value) {
  1082 + this.supType = value;
  1083 + }
  1084 +
  1085 + /**
  1086 + * Gets the value of the brandCN property.
  1087 + *
  1088 + * @return
  1089 + * possible object is
  1090 + * {@link String }
  1091 + *
  1092 + */
  1093 + public String getBrandCN() {
  1094 + return brandCN;
  1095 + }
  1096 +
  1097 + /**
  1098 + * Sets the value of the brandCN property.
  1099 + *
  1100 + * @param value
  1101 + * allowed object is
  1102 + * {@link String }
  1103 + *
  1104 + */
  1105 + public void setBrandCN(String value) {
  1106 + this.brandCN = value;
  1107 + }
  1108 +
  1109 + /**
  1110 + * Gets the value of the brandEN property.
  1111 + *
  1112 + * @return
  1113 + * possible object is
  1114 + * {@link String }
  1115 + *
  1116 + */
  1117 + public String getBrandEN() {
  1118 + return brandEN;
  1119 + }
  1120 +
  1121 + /**
  1122 + * Sets the value of the brandEN property.
  1123 + *
  1124 + * @param value
  1125 + * allowed object is
  1126 + * {@link String }
  1127 + *
  1128 + */
  1129 + public void setBrandEN(String value) {
  1130 + this.brandEN = value;
  1131 + }
  1132 +
  1133 + /**
  1134 + * Gets the value of the buyer property.
  1135 + *
  1136 + * @return
  1137 + * possible object is
  1138 + * {@link String }
  1139 + *
  1140 + */
  1141 + public String getBuyer() {
  1142 + return buyer;
  1143 + }
  1144 +
  1145 + /**
  1146 + * Sets the value of the buyer property.
  1147 + *
  1148 + * @param value
  1149 + * allowed object is
  1150 + * {@link String }
  1151 + *
  1152 + */
  1153 + public void setBuyer(String value) {
  1154 + this.buyer = value;
  1155 + }
  1156 +
  1157 + /**
  1158 + * Gets the value of the buyerContact property.
  1159 + *
  1160 + * @return
  1161 + * possible object is
  1162 + * {@link String }
  1163 + *
  1164 + */
  1165 + public String getBuyerContact() {
  1166 + return buyerContact;
  1167 + }
  1168 +
  1169 + /**
  1170 + * Sets the value of the buyerContact property.
  1171 + *
  1172 + * @param value
  1173 + * allowed object is
  1174 + * {@link String }
  1175 + *
  1176 + */
  1177 + public void setBuyerContact(String value) {
  1178 + this.buyerContact = value;
  1179 + }
  1180 +
  1181 + /**
  1182 + * Gets the value of the buyerAddr property.
  1183 + *
  1184 + * @return
  1185 + * possible object is
  1186 + * {@link String }
  1187 + *
  1188 + */
  1189 + public String getBuyerAddr() {
  1190 + return buyerAddr;
  1191 + }
  1192 +
  1193 + /**
  1194 + * Sets the value of the buyerAddr property.
  1195 + *
  1196 + * @param value
  1197 + * allowed object is
  1198 + * {@link String }
  1199 + *
  1200 + */
  1201 + public void setBuyerAddr(String value) {
  1202 + this.buyerAddr = value;
  1203 + }
  1204 +
  1205 + /**
  1206 + * Gets the value of the buyerTel property.
  1207 + *
  1208 + * @return
  1209 + * possible object is
  1210 + * {@link String }
  1211 + *
  1212 + */
  1213 + public String getBuyerTel() {
  1214 + return buyerTel;
  1215 + }
  1216 +
  1217 + /**
  1218 + * Sets the value of the buyerTel property.
  1219 + *
  1220 + * @param value
  1221 + * allowed object is
  1222 + * {@link String }
  1223 + *
  1224 + */
  1225 + public void setBuyerTel(String value) {
  1226 + this.buyerTel = value;
  1227 + }
  1228 +
  1229 + /**
  1230 + * Gets the value of the seller property.
  1231 + *
  1232 + * @return
  1233 + * possible object is
  1234 + * {@link String }
  1235 + *
  1236 + */
  1237 + public String getSeller() {
  1238 + return seller;
  1239 + }
  1240 +
  1241 + /**
  1242 + * Sets the value of the seller property.
  1243 + *
  1244 + * @param value
  1245 + * allowed object is
  1246 + * {@link String }
  1247 + *
  1248 + */
  1249 + public void setSeller(String value) {
  1250 + this.seller = value;
  1251 + }
  1252 +
  1253 + /**
  1254 + * Gets the value of the sellerContact property.
  1255 + *
  1256 + * @return
  1257 + * possible object is
  1258 + * {@link String }
  1259 + *
  1260 + */
  1261 + public String getSellerContact() {
  1262 + return sellerContact;
  1263 + }
  1264 +
  1265 + /**
  1266 + * Sets the value of the sellerContact property.
  1267 + *
  1268 + * @param value
  1269 + * allowed object is
  1270 + * {@link String }
  1271 + *
  1272 + */
  1273 + public void setSellerContact(String value) {
  1274 + this.sellerContact = value;
  1275 + }
  1276 +
  1277 + /**
  1278 + * Gets the value of the sellerAddr property.
  1279 + *
  1280 + * @return
  1281 + * possible object is
  1282 + * {@link String }
  1283 + *
  1284 + */
  1285 + public String getSellerAddr() {
  1286 + return sellerAddr;
  1287 + }
  1288 +
  1289 + /**
  1290 + * Sets the value of the sellerAddr property.
  1291 + *
  1292 + * @param value
  1293 + * allowed object is
  1294 + * {@link String }
  1295 + *
  1296 + */
  1297 + public void setSellerAddr(String value) {
  1298 + this.sellerAddr = value;
  1299 + }
  1300 +
  1301 + /**
  1302 + * Gets the value of the sellerTel property.
  1303 + *
  1304 + * @return
  1305 + * possible object is
  1306 + * {@link String }
  1307 + *
  1308 + */
  1309 + public String getSellerTel() {
  1310 + return sellerTel;
  1311 + }
  1312 +
  1313 + /**
  1314 + * Sets the value of the sellerTel property.
  1315 + *
  1316 + * @param value
  1317 + * allowed object is
  1318 + * {@link String }
  1319 + *
  1320 + */
  1321 + public void setSellerTel(String value) {
  1322 + this.sellerTel = value;
  1323 + }
  1324 +
  1325 + /**
  1326 + * Gets the value of the factory property.
  1327 + *
  1328 + * @return
  1329 + * possible object is
  1330 + * {@link String }
  1331 + *
  1332 + */
  1333 + public String getFactory() {
  1334 + return factory;
  1335 + }
  1336 +
  1337 + /**
  1338 + * Sets the value of the factory property.
  1339 + *
  1340 + * @param value
  1341 + * allowed object is
  1342 + * {@link String }
  1343 + *
  1344 + */
  1345 + public void setFactory(String value) {
  1346 + this.factory = value;
  1347 + }
  1348 +
  1349 + /**
  1350 + * Gets the value of the factoryContact property.
  1351 + *
  1352 + * @return
  1353 + * possible object is
  1354 + * {@link String }
  1355 + *
  1356 + */
  1357 + public String getFactoryContact() {
  1358 + return factoryContact;
  1359 + }
  1360 +
  1361 + /**
  1362 + * Sets the value of the factoryContact property.
  1363 + *
  1364 + * @param value
  1365 + * allowed object is
  1366 + * {@link String }
  1367 + *
  1368 + */
  1369 + public void setFactoryContact(String value) {
  1370 + this.factoryContact = value;
  1371 + }
  1372 +
  1373 + /**
  1374 + * Gets the value of the factoryAddr property.
  1375 + *
  1376 + * @return
  1377 + * possible object is
  1378 + * {@link String }
  1379 + *
  1380 + */
  1381 + public String getFactoryAddr() {
  1382 + return factoryAddr;
  1383 + }
  1384 +
  1385 + /**
  1386 + * Sets the value of the factoryAddr property.
  1387 + *
  1388 + * @param value
  1389 + * allowed object is
  1390 + * {@link String }
  1391 + *
  1392 + */
  1393 + public void setFactoryAddr(String value) {
  1394 + this.factoryAddr = value;
  1395 + }
  1396 +
  1397 + /**
  1398 + * Gets the value of the factoryTel property.
  1399 + *
  1400 + * @return
  1401 + * possible object is
  1402 + * {@link String }
  1403 + *
  1404 + */
  1405 + public String getFactoryTel() {
  1406 + return factoryTel;
  1407 + }
  1408 +
  1409 + /**
  1410 + * Sets the value of the factoryTel property.
  1411 + *
  1412 + * @param value
  1413 + * allowed object is
  1414 + * {@link String }
  1415 + *
  1416 + */
  1417 + public void setFactoryTel(String value) {
  1418 + this.factoryTel = value;
  1419 + }
  1420 +
  1421 + /**
  1422 + * Gets the value of the contrNo property.
  1423 + *
  1424 + * @return
  1425 + * possible object is
  1426 + * {@link String }
  1427 + *
  1428 + */
  1429 + public String getContrNo() {
  1430 + return contrNo;
  1431 + }
  1432 +
  1433 + /**
  1434 + * Sets the value of the contrNo property.
  1435 + *
  1436 + * @param value
  1437 + * allowed object is
  1438 + * {@link String }
  1439 + *
  1440 + */
  1441 + public void setContrNo(String value) {
  1442 + this.contrNo = value;
  1443 + }
  1444 +
  1445 + /**
  1446 + * Gets the value of the contrDate property.
  1447 + *
  1448 + * @return
  1449 + * possible object is
  1450 + * {@link String }
  1451 + *
  1452 + */
  1453 + public String getContrDate() {
  1454 + return contrDate;
  1455 + }
  1456 +
  1457 + /**
  1458 + * Sets the value of the contrDate property.
  1459 + *
  1460 + * @param value
  1461 + * allowed object is
  1462 + * {@link String }
  1463 + *
  1464 + */
  1465 + public void setContrDate(String value) {
  1466 + this.contrDate = value;
  1467 + }
  1468 +
  1469 + /**
  1470 + * Gets the value of the invoiceNo property.
  1471 + *
  1472 + * @return
  1473 + * possible object is
  1474 + * {@link String }
  1475 + *
  1476 + */
  1477 + public String getInvoiceNo() {
  1478 + return invoiceNo;
  1479 + }
  1480 +
  1481 + /**
  1482 + * Sets the value of the invoiceNo property.
  1483 + *
  1484 + * @param value
  1485 + * allowed object is
  1486 + * {@link String }
  1487 + *
  1488 + */
  1489 + public void setInvoiceNo(String value) {
  1490 + this.invoiceNo = value;
  1491 + }
  1492 +
  1493 + /**
  1494 + * Gets the value of the invoiceDate property.
  1495 + *
  1496 + * @return
  1497 + * possible object is
  1498 + * {@link String }
  1499 + *
  1500 + */
  1501 + public String getInvoiceDate() {
  1502 + return invoiceDate;
  1503 + }
  1504 +
  1505 + /**
  1506 + * Sets the value of the invoiceDate property.
  1507 + *
  1508 + * @param value
  1509 + * allowed object is
  1510 + * {@link String }
  1511 + *
  1512 + */
  1513 + public void setInvoiceDate(String value) {
  1514 + this.invoiceDate = value;
  1515 + }
  1516 +
  1517 + /**
  1518 + * Gets the value of the iBabRel property.
  1519 + *
  1520 + * @return
  1521 + * possible object is
  1522 + * {@link String }
  1523 + *
  1524 + */
  1525 + public String getIBabRel() {
  1526 + return iBabRel;
  1527 + }
  1528 +
  1529 + /**
  1530 + * Sets the value of the iBabRel property.
  1531 + *
  1532 + * @param value
  1533 + * allowed object is
  1534 + * {@link String }
  1535 + *
  1536 + */
  1537 + public void setIBabRel(String value) {
  1538 + this.iBabRel = value;
  1539 + }
  1540 +
  1541 + /**
  1542 + * Gets the value of the iPriceEffect property.
  1543 + *
  1544 + * @return
  1545 + * possible object is
  1546 + * {@link String }
  1547 + *
  1548 + */
  1549 + public String getIPriceEffect() {
  1550 + return iPriceEffect;
  1551 + }
  1552 +
  1553 + /**
  1554 + * Sets the value of the iPriceEffect property.
  1555 + *
  1556 + * @param value
  1557 + * allowed object is
  1558 + * {@link String }
  1559 + *
  1560 + */
  1561 + public void setIPriceEffect(String value) {
  1562 + this.iPriceEffect = value;
  1563 + }
  1564 +
  1565 + /**
  1566 + * Gets the value of the iPriceClose property.
  1567 + *
  1568 + * @return
  1569 + * possible object is
  1570 + * {@link String }
  1571 + *
  1572 + */
  1573 + public String getIPriceClose() {
  1574 + return iPriceClose;
  1575 + }
  1576 +
  1577 + /**
  1578 + * Sets the value of the iPriceClose property.
  1579 + *
  1580 + * @param value
  1581 + * allowed object is
  1582 + * {@link String }
  1583 + *
  1584 + */
  1585 + public void setIPriceClose(String value) {
  1586 + this.iPriceClose = value;
  1587 + }
  1588 +
  1589 + /**
  1590 + * Gets the value of the iOtherLimited property.
  1591 + *
  1592 + * @return
  1593 + * possible object is
  1594 + * {@link String }
  1595 + *
  1596 + */
  1597 + public String getIOtherLimited() {
  1598 + return iOtherLimited;
  1599 + }
  1600 +
  1601 + /**
  1602 + * Sets the value of the iOtherLimited property.
  1603 + *
  1604 + * @param value
  1605 + * allowed object is
  1606 + * {@link String }
  1607 + *
  1608 + */
  1609 + public void setIOtherLimited(String value) {
  1610 + this.iOtherLimited = value;
  1611 + }
  1612 +
  1613 + /**
  1614 + * Gets the value of the iOtherEffect property.
  1615 + *
  1616 + * @return
  1617 + * possible object is
  1618 + * {@link String }
  1619 + *
  1620 + */
  1621 + public String getIOtherEffect() {
  1622 + return iOtherEffect;
  1623 + }
  1624 +
  1625 + /**
  1626 + * Sets the value of the iOtherEffect property.
  1627 + *
  1628 + * @param value
  1629 + * allowed object is
  1630 + * {@link String }
  1631 + *
  1632 + */
  1633 + public void setIOtherEffect(String value) {
  1634 + this.iOtherEffect = value;
  1635 + }
  1636 +
  1637 + /**
  1638 + * Gets the value of the iNote1 property.
  1639 + *
  1640 + * @return
  1641 + * possible object is
  1642 + * {@link String }
  1643 + *
  1644 + */
  1645 + public String getINote1() {
  1646 + return iNote1;
  1647 + }
  1648 +
  1649 + /**
  1650 + * Sets the value of the iNote1 property.
  1651 + *
  1652 + * @param value
  1653 + * allowed object is
  1654 + * {@link String }
  1655 + *
  1656 + */
  1657 + public void setINote1(String value) {
  1658 + this.iNote1 = value;
  1659 + }
  1660 +
  1661 + /**
  1662 + * Gets the value of the iIsUsefee property.
  1663 + *
  1664 + * @return
  1665 + * possible object is
  1666 + * {@link String }
  1667 + *
  1668 + */
  1669 + public String getIIsUsefee() {
  1670 + return iIsUsefee;
  1671 + }
  1672 +
  1673 + /**
  1674 + * Sets the value of the iIsUsefee property.
  1675 + *
  1676 + * @param value
  1677 + * allowed object is
  1678 + * {@link String }
  1679 + *
  1680 + */
  1681 + public void setIIsUsefee(String value) {
  1682 + this.iIsUsefee = value;
  1683 + }
  1684 +
  1685 + /**
  1686 + * Gets the value of the iIsProfit property.
  1687 + *
  1688 + * @return
  1689 + * possible object is
  1690 + * {@link String }
  1691 + *
  1692 + */
  1693 + public String getIIsProfit() {
  1694 + return iIsProfit;
  1695 + }
  1696 +
  1697 + /**
  1698 + * Sets the value of the iIsProfit property.
  1699 + *
  1700 + * @param value
  1701 + * allowed object is
  1702 + * {@link String }
  1703 + *
  1704 + */
  1705 + public void setIIsProfit(String value) {
  1706 + this.iIsProfit = value;
  1707 + }
  1708 +
  1709 + /**
  1710 + * Gets the value of the iNote2 property.
  1711 + *
  1712 + * @return
  1713 + * possible object is
  1714 + * {@link String }
  1715 + *
  1716 + */
  1717 + public String getINote2() {
  1718 + return iNote2;
  1719 + }
  1720 +
  1721 + /**
  1722 + * Sets the value of the iNote2 property.
  1723 + *
  1724 + * @param value
  1725 + * allowed object is
  1726 + * {@link String }
  1727 + *
  1728 + */
  1729 + public void setINote2(String value) {
  1730 + this.iNote2 = value;
  1731 + }
  1732 +
  1733 + /**
  1734 + * Gets the value of the curr property.
  1735 + *
  1736 + * @return
  1737 + * possible object is
  1738 + * {@link String }
  1739 + *
  1740 + */
  1741 + public String getCurr() {
  1742 + return curr;
  1743 + }
  1744 +
  1745 + /**
  1746 + * Sets the value of the curr property.
  1747 + *
  1748 + * @param value
  1749 + * allowed object is
  1750 + * {@link String }
  1751 + *
  1752 + */
  1753 + public void setCurr(String value) {
  1754 + this.curr = value;
  1755 + }
  1756 +
  1757 + /**
  1758 + * Gets the value of the invoicePrice property.
  1759 + *
  1760 + * @return
  1761 + * possible object is
  1762 + * {@link String }
  1763 + *
  1764 + */
  1765 + public String getInvoicePrice() {
  1766 + return invoicePrice;
  1767 + }
  1768 +
  1769 + /**
  1770 + * Sets the value of the invoicePrice property.
  1771 + *
  1772 + * @param value
  1773 + * allowed object is
  1774 + * {@link String }
  1775 + *
  1776 + */
  1777 + public void setInvoicePrice(String value) {
  1778 + this.invoicePrice = value;
  1779 + }
  1780 +
  1781 + /**
  1782 + * Gets the value of the invoiceAmount property.
  1783 + *
  1784 + * @return
  1785 + * possible object is
  1786 + * {@link String }
  1787 + *
  1788 + */
  1789 + public String getInvoiceAmount() {
  1790 + return invoiceAmount;
  1791 + }
  1792 +
  1793 + /**
  1794 + * Sets the value of the invoiceAmount property.
  1795 + *
  1796 + * @param value
  1797 + * allowed object is
  1798 + * {@link String }
  1799 + *
  1800 + */
  1801 + public void setInvoiceAmount(String value) {
  1802 + this.invoiceAmount = value;
  1803 + }
  1804 +
  1805 + /**
  1806 + * Gets the value of the invoiceNote property.
  1807 + *
  1808 + * @return
  1809 + * possible object is
  1810 + * {@link String }
  1811 + *
  1812 + */
  1813 + public String getInvoiceNote() {
  1814 + return invoiceNote;
  1815 + }
  1816 +
  1817 + /**
  1818 + * Sets the value of the invoiceNote property.
  1819 + *
  1820 + * @param value
  1821 + * allowed object is
  1822 + * {@link String }
  1823 + *
  1824 + */
  1825 + public void setInvoiceNote(String value) {
  1826 + this.invoiceNote = value;
  1827 + }
  1828 +
  1829 + /**
  1830 + * Gets the value of the goodsPrice property.
  1831 + *
  1832 + * @return
  1833 + * possible object is
  1834 + * {@link String }
  1835 + *
  1836 + */
  1837 + public String getGoodsPrice() {
  1838 + return goodsPrice;
  1839 + }
  1840 +
  1841 + /**
  1842 + * Sets the value of the goodsPrice property.
  1843 + *
  1844 + * @param value
  1845 + * allowed object is
  1846 + * {@link String }
  1847 + *
  1848 + */
  1849 + public void setGoodsPrice(String value) {
  1850 + this.goodsPrice = value;
  1851 + }
  1852 +
  1853 + /**
  1854 + * Gets the value of the goodsAmount property.
  1855 + *
  1856 + * @return
  1857 + * possible object is
  1858 + * {@link String }
  1859 + *
  1860 + */
  1861 + public String getGoodsAmount() {
  1862 + return goodsAmount;
  1863 + }
  1864 +
  1865 + /**
  1866 + * Sets the value of the goodsAmount property.
  1867 + *
  1868 + * @param value
  1869 + * allowed object is
  1870 + * {@link String }
  1871 + *
  1872 + */
  1873 + public void setGoodsAmount(String value) {
  1874 + this.goodsAmount = value;
  1875 + }
  1876 +
  1877 + /**
  1878 + * Gets the value of the goodsNote property.
  1879 + *
  1880 + * @return
  1881 + * possible object is
  1882 + * {@link String }
  1883 + *
  1884 + */
  1885 + public String getGoodsNote() {
  1886 + return goodsNote;
  1887 + }
  1888 +
  1889 + /**
  1890 + * Sets the value of the goodsNote property.
  1891 + *
  1892 + * @param value
  1893 + * allowed object is
  1894 + * {@link String }
  1895 + *
  1896 + */
  1897 + public void setGoodsNote(String value) {
  1898 + this.goodsNote = value;
  1899 + }
  1900 +
  1901 + /**
  1902 + * Gets the value of the iCommissionPrice property.
  1903 + *
  1904 + * @return
  1905 + * possible object is
  1906 + * {@link String }
  1907 + *
  1908 + */
  1909 + public String getICommissionPrice() {
  1910 + return iCommissionPrice;
  1911 + }
  1912 +
  1913 + /**
  1914 + * Sets the value of the iCommissionPrice property.
  1915 + *
  1916 + * @param value
  1917 + * allowed object is
  1918 + * {@link String }
  1919 + *
  1920 + */
  1921 + public void setICommissionPrice(String value) {
  1922 + this.iCommissionPrice = value;
  1923 + }
  1924 +
  1925 + /**
  1926 + * Gets the value of the iCommissionAmount property.
  1927 + *
  1928 + * @return
  1929 + * possible object is
  1930 + * {@link String }
  1931 + *
  1932 + */
  1933 + public String getICommissionAmount() {
  1934 + return iCommissionAmount;
  1935 + }
  1936 +
  1937 + /**
  1938 + * Sets the value of the iCommissionAmount property.
  1939 + *
  1940 + * @param value
  1941 + * allowed object is
  1942 + * {@link String }
  1943 + *
  1944 + */
  1945 + public void setICommissionAmount(String value) {
  1946 + this.iCommissionAmount = value;
  1947 + }
  1948 +
  1949 + /**
  1950 + * Gets the value of the iCommissionNote property.
  1951 + *
  1952 + * @return
  1953 + * possible object is
  1954 + * {@link String }
  1955 + *
  1956 + */
  1957 + public String getICommissionNote() {
  1958 + return iCommissionNote;
  1959 + }
  1960 +
  1961 + /**
  1962 + * Sets the value of the iCommissionNote property.
  1963 + *
  1964 + * @param value
  1965 + * allowed object is
  1966 + * {@link String }
  1967 + *
  1968 + */
  1969 + public void setICommissionNote(String value) {
  1970 + this.iCommissionNote = value;
  1971 + }
  1972 +
  1973 + /**
  1974 + * Gets the value of the iContainerPrice property.
  1975 + *
  1976 + * @return
  1977 + * possible object is
  1978 + * {@link String }
  1979 + *
  1980 + */
  1981 + public String getIContainerPrice() {
  1982 + return iContainerPrice;
  1983 + }
  1984 +
  1985 + /**
  1986 + * Sets the value of the iContainerPrice property.
  1987 + *
  1988 + * @param value
  1989 + * allowed object is
  1990 + * {@link String }
  1991 + *
  1992 + */
  1993 + public void setIContainerPrice(String value) {
  1994 + this.iContainerPrice = value;
  1995 + }
  1996 +
  1997 + /**
  1998 + * Gets the value of the iContainerAmount property.
  1999 + *
  2000 + * @return
  2001 + * possible object is
  2002 + * {@link String }
  2003 + *
  2004 + */
  2005 + public String getIContainerAmount() {
  2006 + return iContainerAmount;
  2007 + }
  2008 +
  2009 + /**
  2010 + * Sets the value of the iContainerAmount property.
  2011 + *
  2012 + * @param value
  2013 + * allowed object is
  2014 + * {@link String }
  2015 + *
  2016 + */
  2017 + public void setIContainerAmount(String value) {
  2018 + this.iContainerAmount = value;
  2019 + }
  2020 +
  2021 + /**
  2022 + * Gets the value of the iContainerNote property.
  2023 + *
  2024 + * @return
  2025 + * possible object is
  2026 + * {@link String }
  2027 + *
  2028 + */
  2029 + public String getIContainerNote() {
  2030 + return iContainerNote;
  2031 + }
  2032 +
  2033 + /**
  2034 + * Sets the value of the iContainerNote property.
  2035 + *
  2036 + * @param value
  2037 + * allowed object is
  2038 + * {@link String }
  2039 + *
  2040 + */
  2041 + public void setIContainerNote(String value) {
  2042 + this.iContainerNote = value;
  2043 + }
  2044 +
  2045 + /**
  2046 + * Gets the value of the iPackPrice property.
  2047 + *
  2048 + * @return
  2049 + * possible object is
  2050 + * {@link String }
  2051 + *
  2052 + */
  2053 + public String getIPackPrice() {
  2054 + return iPackPrice;
  2055 + }
  2056 +
  2057 + /**
  2058 + * Sets the value of the iPackPrice property.
  2059 + *
  2060 + * @param value
  2061 + * allowed object is
  2062 + * {@link String }
  2063 + *
  2064 + */
  2065 + public void setIPackPrice(String value) {
  2066 + this.iPackPrice = value;
  2067 + }
  2068 +
  2069 + /**
  2070 + * Gets the value of the iPackAmount property.
  2071 + *
  2072 + * @return
  2073 + * possible object is
  2074 + * {@link String }
  2075 + *
  2076 + */
  2077 + public String getIPackAmount() {
  2078 + return iPackAmount;
  2079 + }
  2080 +
  2081 + /**
  2082 + * Sets the value of the iPackAmount property.
  2083 + *
  2084 + * @param value
  2085 + * allowed object is
  2086 + * {@link String }
  2087 + *
  2088 + */
  2089 + public void setIPackAmount(String value) {
  2090 + this.iPackAmount = value;
  2091 + }
  2092 +
  2093 + /**
  2094 + * Gets the value of the iPackNote property.
  2095 + *
  2096 + * @return
  2097 + * possible object is
  2098 + * {@link String }
  2099 + *
  2100 + */
  2101 + public String getIPackNote() {
  2102 + return iPackNote;
  2103 + }
  2104 +
  2105 + /**
  2106 + * Sets the value of the iPackNote property.
  2107 + *
  2108 + * @param value
  2109 + * allowed object is
  2110 + * {@link String }
  2111 + *
  2112 + */
  2113 + public void setIPackNote(String value) {
  2114 + this.iPackNote = value;
  2115 + }
  2116 +
  2117 + /**
  2118 + * Gets the value of the iPartPrice property.
  2119 + *
  2120 + * @return
  2121 + * possible object is
  2122 + * {@link String }
  2123 + *
  2124 + */
  2125 + public String getIPartPrice() {
  2126 + return iPartPrice;
  2127 + }
  2128 +
  2129 + /**
  2130 + * Sets the value of the iPartPrice property.
  2131 + *
  2132 + * @param value
  2133 + * allowed object is
  2134 + * {@link String }
  2135 + *
  2136 + */
  2137 + public void setIPartPrice(String value) {
  2138 + this.iPartPrice = value;
  2139 + }
  2140 +
  2141 + /**
  2142 + * Gets the value of the iPartAmount property.
  2143 + *
  2144 + * @return
  2145 + * possible object is
  2146 + * {@link String }
  2147 + *
  2148 + */
  2149 + public String getIPartAmount() {
  2150 + return iPartAmount;
  2151 + }
  2152 +
  2153 + /**
  2154 + * Sets the value of the iPartAmount property.
  2155 + *
  2156 + * @param value
  2157 + * allowed object is
  2158 + * {@link String }
  2159 + *
  2160 + */
  2161 + public void setIPartAmount(String value) {
  2162 + this.iPartAmount = value;
  2163 + }
  2164 +
  2165 + /**
  2166 + * Gets the value of the iPartNote property.
  2167 + *
  2168 + * @return
  2169 + * possible object is
  2170 + * {@link String }
  2171 + *
  2172 + */
  2173 + public String getIPartNote() {
  2174 + return iPartNote;
  2175 + }
  2176 +
  2177 + /**
  2178 + * Sets the value of the iPartNote property.
  2179 + *
  2180 + * @param value
  2181 + * allowed object is
  2182 + * {@link String }
  2183 + *
  2184 + */
  2185 + public void setIPartNote(String value) {
  2186 + this.iPartNote = value;
  2187 + }
  2188 +
  2189 + /**
  2190 + * Gets the value of the iToolPrice property.
  2191 + *
  2192 + * @return
  2193 + * possible object is
  2194 + * {@link String }
  2195 + *
  2196 + */
  2197 + public String getIToolPrice() {
  2198 + return iToolPrice;
  2199 + }
  2200 +
  2201 + /**
  2202 + * Sets the value of the iToolPrice property.
  2203 + *
  2204 + * @param value
  2205 + * allowed object is
  2206 + * {@link String }
  2207 + *
  2208 + */
  2209 + public void setIToolPrice(String value) {
  2210 + this.iToolPrice = value;
  2211 + }
  2212 +
  2213 + /**
  2214 + * Gets the value of the iToolAmount property.
  2215 + *
  2216 + * @return
  2217 + * possible object is
  2218 + * {@link String }
  2219 + *
  2220 + */
  2221 + public String getIToolAmount() {
  2222 + return iToolAmount;
  2223 + }
  2224 +
  2225 + /**
  2226 + * Sets the value of the iToolAmount property.
  2227 + *
  2228 + * @param value
  2229 + * allowed object is
  2230 + * {@link String }
  2231 + *
  2232 + */
  2233 + public void setIToolAmount(String value) {
  2234 + this.iToolAmount = value;
  2235 + }
  2236 +
  2237 + /**
  2238 + * Gets the value of the iToolNote property.
  2239 + *
  2240 + * @return
  2241 + * possible object is
  2242 + * {@link String }
  2243 + *
  2244 + */
  2245 + public String getIToolNote() {
  2246 + return iToolNote;
  2247 + }
  2248 +
  2249 + /**
  2250 + * Sets the value of the iToolNote property.
  2251 + *
  2252 + * @param value
  2253 + * allowed object is
  2254 + * {@link String }
  2255 + *
  2256 + */
  2257 + public void setIToolNote(String value) {
  2258 + this.iToolNote = value;
  2259 + }
  2260 +
  2261 + /**
  2262 + * Gets the value of the iLossPrice property.
  2263 + *
  2264 + * @return
  2265 + * possible object is
  2266 + * {@link String }
  2267 + *
  2268 + */
  2269 + public String getILossPrice() {
  2270 + return iLossPrice;
  2271 + }
  2272 +
  2273 + /**
  2274 + * Sets the value of the iLossPrice property.
  2275 + *
  2276 + * @param value
  2277 + * allowed object is
  2278 + * {@link String }
  2279 + *
  2280 + */
  2281 + public void setILossPrice(String value) {
  2282 + this.iLossPrice = value;
  2283 + }
  2284 +
  2285 + /**
  2286 + * Gets the value of the iLossAmount property.
  2287 + *
  2288 + * @return
  2289 + * possible object is
  2290 + * {@link String }
  2291 + *
  2292 + */
  2293 + public String getILossAmount() {
  2294 + return iLossAmount;
  2295 + }
  2296 +
  2297 + /**
  2298 + * Sets the value of the iLossAmount property.
  2299 + *
  2300 + * @param value
  2301 + * allowed object is
  2302 + * {@link String }
  2303 + *
  2304 + */
  2305 + public void setILossAmount(String value) {
  2306 + this.iLossAmount = value;
  2307 + }
  2308 +
  2309 + /**
  2310 + * Gets the value of the iLossNote property.
  2311 + *
  2312 + * @return
  2313 + * possible object is
  2314 + * {@link String }
  2315 + *
  2316 + */
  2317 + public String getILossNote() {
  2318 + return iLossNote;
  2319 + }
  2320 +
  2321 + /**
  2322 + * Sets the value of the iLossNote property.
  2323 + *
  2324 + * @param value
  2325 + * allowed object is
  2326 + * {@link String }
  2327 + *
  2328 + */
  2329 + public void setILossNote(String value) {
  2330 + this.iLossNote = value;
  2331 + }
  2332 +
  2333 + /**
  2334 + * Gets the value of the iDesignPrice property.
  2335 + *
  2336 + * @return
  2337 + * possible object is
  2338 + * {@link String }
  2339 + *
  2340 + */
  2341 + public String getIDesignPrice() {
  2342 + return iDesignPrice;
  2343 + }
  2344 +
  2345 + /**
  2346 + * Sets the value of the iDesignPrice property.
  2347 + *
  2348 + * @param value
  2349 + * allowed object is
  2350 + * {@link String }
  2351 + *
  2352 + */
  2353 + public void setIDesignPrice(String value) {
  2354 + this.iDesignPrice = value;
  2355 + }
  2356 +
  2357 + /**
  2358 + * Gets the value of the iDesignAmount property.
  2359 + *
  2360 + * @return
  2361 + * possible object is
  2362 + * {@link String }
  2363 + *
  2364 + */
  2365 + public String getIDesignAmount() {
  2366 + return iDesignAmount;
  2367 + }
  2368 +
  2369 + /**
  2370 + * Sets the value of the iDesignAmount property.
  2371 + *
  2372 + * @param value
  2373 + * allowed object is
  2374 + * {@link String }
  2375 + *
  2376 + */
  2377 + public void setIDesignAmount(String value) {
  2378 + this.iDesignAmount = value;
  2379 + }
  2380 +
  2381 + /**
  2382 + * Gets the value of the iDesignNote property.
  2383 + *
  2384 + * @return
  2385 + * possible object is
  2386 + * {@link String }
  2387 + *
  2388 + */
  2389 + public String getIDesignNote() {
  2390 + return iDesignNote;
  2391 + }
  2392 +
  2393 + /**
  2394 + * Sets the value of the iDesignNote property.
  2395 + *
  2396 + * @param value
  2397 + * allowed object is
  2398 + * {@link String }
  2399 + *
  2400 + */
  2401 + public void setIDesignNote(String value) {
  2402 + this.iDesignNote = value;
  2403 + }
  2404 +
  2405 + /**
  2406 + * Gets the value of the iUsefeePrice property.
  2407 + *
  2408 + * @return
  2409 + * possible object is
  2410 + * {@link String }
  2411 + *
  2412 + */
  2413 + public String getIUsefeePrice() {
  2414 + return iUsefeePrice;
  2415 + }
  2416 +
  2417 + /**
  2418 + * Sets the value of the iUsefeePrice property.
  2419 + *
  2420 + * @param value
  2421 + * allowed object is
  2422 + * {@link String }
  2423 + *
  2424 + */
  2425 + public void setIUsefeePrice(String value) {
  2426 + this.iUsefeePrice = value;
  2427 + }
  2428 +
  2429 + /**
  2430 + * Gets the value of the iUsefeeAmount property.
  2431 + *
  2432 + * @return
  2433 + * possible object is
  2434 + * {@link String }
  2435 + *
  2436 + */
  2437 + public String getIUsefeeAmount() {
  2438 + return iUsefeeAmount;
  2439 + }
  2440 +
  2441 + /**
  2442 + * Sets the value of the iUsefeeAmount property.
  2443 + *
  2444 + * @param value
  2445 + * allowed object is
  2446 + * {@link String }
  2447 + *
  2448 + */
  2449 + public void setIUsefeeAmount(String value) {
  2450 + this.iUsefeeAmount = value;
  2451 + }
  2452 +
  2453 + /**
  2454 + * Gets the value of the iUsefeeNote property.
  2455 + *
  2456 + * @return
  2457 + * possible object is
  2458 + * {@link String }
  2459 + *
  2460 + */
  2461 + public String getIUsefeeNote() {
  2462 + return iUsefeeNote;
  2463 + }
  2464 +
  2465 + /**
  2466 + * Sets the value of the iUsefeeNote property.
  2467 + *
  2468 + * @param value
  2469 + * allowed object is
  2470 + * {@link String }
  2471 + *
  2472 + */
  2473 + public void setIUsefeeNote(String value) {
  2474 + this.iUsefeeNote = value;
  2475 + }
  2476 +
  2477 + /**
  2478 + * Gets the value of the iProfitPrice property.
  2479 + *
  2480 + * @return
  2481 + * possible object is
  2482 + * {@link String }
  2483 + *
  2484 + */
  2485 + public String getIProfitPrice() {
  2486 + return iProfitPrice;
  2487 + }
  2488 +
  2489 + /**
  2490 + * Sets the value of the iProfitPrice property.
  2491 + *
  2492 + * @param value
  2493 + * allowed object is
  2494 + * {@link String }
  2495 + *
  2496 + */
  2497 + public void setIProfitPrice(String value) {
  2498 + this.iProfitPrice = value;
  2499 + }
  2500 +
  2501 + /**
  2502 + * Gets the value of the iProfitAmount property.
  2503 + *
  2504 + * @return
  2505 + * possible object is
  2506 + * {@link String }
  2507 + *
  2508 + */
  2509 + public String getIProfitAmount() {
  2510 + return iProfitAmount;
  2511 + }
  2512 +
  2513 + /**
  2514 + * Sets the value of the iProfitAmount property.
  2515 + *
  2516 + * @param value
  2517 + * allowed object is
  2518 + * {@link String }
  2519 + *
  2520 + */
  2521 + public void setIProfitAmount(String value) {
  2522 + this.iProfitAmount = value;
  2523 + }
  2524 +
  2525 + /**
  2526 + * Gets the value of the iProfitNote property.
  2527 + *
  2528 + * @return
  2529 + * possible object is
  2530 + * {@link String }
  2531 + *
  2532 + */
  2533 + public String getIProfitNote() {
  2534 + return iProfitNote;
  2535 + }
  2536 +
  2537 + /**
  2538 + * Sets the value of the iProfitNote property.
  2539 + *
  2540 + * @param value
  2541 + * allowed object is
  2542 + * {@link String }
  2543 + *
  2544 + */
  2545 + public void setIProfitNote(String value) {
  2546 + this.iProfitNote = value;
  2547 + }
  2548 +
  2549 + /**
  2550 + * Gets the value of the iFeePrice property.
  2551 + *
  2552 + * @return
  2553 + * possible object is
  2554 + * {@link String }
  2555 + *
  2556 + */
  2557 + public String getIFeePrice() {
  2558 + return iFeePrice;
  2559 + }
  2560 +
  2561 + /**
  2562 + * Sets the value of the iFeePrice property.
  2563 + *
  2564 + * @param value
  2565 + * allowed object is
  2566 + * {@link String }
  2567 + *
  2568 + */
  2569 + public void setIFeePrice(String value) {
  2570 + this.iFeePrice = value;
  2571 + }
  2572 +
  2573 + /**
  2574 + * Gets the value of the iFeeAmount property.
  2575 + *
  2576 + * @return
  2577 + * possible object is
  2578 + * {@link String }
  2579 + *
  2580 + */
  2581 + public String getIFeeAmount() {
  2582 + return iFeeAmount;
  2583 + }
  2584 +
  2585 + /**
  2586 + * Sets the value of the iFeeAmount property.
  2587 + *
  2588 + * @param value
  2589 + * allowed object is
  2590 + * {@link String }
  2591 + *
  2592 + */
  2593 + public void setIFeeAmount(String value) {
  2594 + this.iFeeAmount = value;
  2595 + }
  2596 +
  2597 + /**
  2598 + * Gets the value of the iFeeNote property.
  2599 + *
  2600 + * @return
  2601 + * possible object is
  2602 + * {@link String }
  2603 + *
  2604 + */
  2605 + public String getIFeeNote() {
  2606 + return iFeeNote;
  2607 + }
  2608 +
  2609 + /**
  2610 + * Sets the value of the iFeeNote property.
  2611 + *
  2612 + * @param value
  2613 + * allowed object is
  2614 + * {@link String }
  2615 + *
  2616 + */
  2617 + public void setIFeeNote(String value) {
  2618 + this.iFeeNote = value;
  2619 + }
  2620 +
  2621 + /**
  2622 + * Gets the value of the iOtherPrice property.
  2623 + *
  2624 + * @return
  2625 + * possible object is
  2626 + * {@link String }
  2627 + *
  2628 + */
  2629 + public String getIOtherPrice() {
  2630 + return iOtherPrice;
  2631 + }
  2632 +
  2633 + /**
  2634 + * Sets the value of the iOtherPrice property.
  2635 + *
  2636 + * @param value
  2637 + * allowed object is
  2638 + * {@link String }
  2639 + *
  2640 + */
  2641 + public void setIOtherPrice(String value) {
  2642 + this.iOtherPrice = value;
  2643 + }
  2644 +
  2645 + /**
  2646 + * Gets the value of the iOtherAmount property.
  2647 + *
  2648 + * @return
  2649 + * possible object is
  2650 + * {@link String }
  2651 + *
  2652 + */
  2653 + public String getIOtherAmount() {
  2654 + return iOtherAmount;
  2655 + }
  2656 +
  2657 + /**
  2658 + * Sets the value of the iOtherAmount property.
  2659 + *
  2660 + * @param value
  2661 + * allowed object is
  2662 + * {@link String }
  2663 + *
  2664 + */
  2665 + public void setIOtherAmount(String value) {
  2666 + this.iOtherAmount = value;
  2667 + }
  2668 +
  2669 + /**
  2670 + * Gets the value of the iOtherNote property.
  2671 + *
  2672 + * @return
  2673 + * possible object is
  2674 + * {@link String }
  2675 + *
  2676 + */
  2677 + public String getIOtherNote() {
  2678 + return iOtherNote;
  2679 + }
  2680 +
  2681 + /**
  2682 + * Sets the value of the iOtherNote property.
  2683 + *
  2684 + * @param value
  2685 + * allowed object is
  2686 + * {@link String }
  2687 + *
  2688 + */
  2689 + public void setIOtherNote(String value) {
  2690 + this.iOtherNote = value;
  2691 + }
  2692 +
  2693 + /**
  2694 + * Gets the value of the iInsurPrice property.
  2695 + *
  2696 + * @return
  2697 + * possible object is
  2698 + * {@link String }
  2699 + *
  2700 + */
  2701 + public String getIInsurPrice() {
  2702 + return iInsurPrice;
  2703 + }
  2704 +
  2705 + /**
  2706 + * Sets the value of the iInsurPrice property.
  2707 + *
  2708 + * @param value
  2709 + * allowed object is
  2710 + * {@link String }
  2711 + *
  2712 + */
  2713 + public void setIInsurPrice(String value) {
  2714 + this.iInsurPrice = value;
  2715 + }
  2716 +
  2717 + /**
  2718 + * Gets the value of the iInsurAmount property.
  2719 + *
  2720 + * @return
  2721 + * possible object is
  2722 + * {@link String }
  2723 + *
  2724 + */
  2725 + public String getIInsurAmount() {
  2726 + return iInsurAmount;
  2727 + }
  2728 +
  2729 + /**
  2730 + * Sets the value of the iInsurAmount property.
  2731 + *
  2732 + * @param value
  2733 + * allowed object is
  2734 + * {@link String }
  2735 + *
  2736 + */
  2737 + public void setIInsurAmount(String value) {
  2738 + this.iInsurAmount = value;
  2739 + }
  2740 +
  2741 + /**
  2742 + * Gets the value of the iInsurNote property.
  2743 + *
  2744 + * @return
  2745 + * possible object is
  2746 + * {@link String }
  2747 + *
  2748 + */
  2749 + public String getIInsurNote() {
  2750 + return iInsurNote;
  2751 + }
  2752 +
  2753 + /**
  2754 + * Sets the value of the iInsurNote property.
  2755 + *
  2756 + * @param value
  2757 + * allowed object is
  2758 + * {@link String }
  2759 + *
  2760 + */
  2761 + public void setIInsurNote(String value) {
  2762 + this.iInsurNote = value;
  2763 + }
  2764 +
  2765 + /**
  2766 + * Gets the value of the eIsDutyDel property.
  2767 + *
  2768 + * @return
  2769 + * possible object is
  2770 + * {@link String }
  2771 + *
  2772 + */
  2773 + public String getEIsDutyDel() {
  2774 + return eIsDutyDel;
  2775 + }
  2776 +
  2777 + /**
  2778 + * Sets the value of the eIsDutyDel property.
  2779 + *
  2780 + * @param value
  2781 + * allowed object is
  2782 + * {@link String }
  2783 + *
  2784 + */
  2785 + public void setEIsDutyDel(String value) {
  2786 + this.eIsDutyDel = value;
  2787 + }
  2788 +
  2789 + /**
  2790 + * Gets the value of the gNameOther property.
  2791 + *
  2792 + * @return
  2793 + * possible object is
  2794 + * {@link String }
  2795 + *
  2796 + */
  2797 + public String getGNameOther() {
  2798 + return gNameOther;
  2799 + }
  2800 +
  2801 + /**
  2802 + * Sets the value of the gNameOther property.
  2803 + *
  2804 + * @param value
  2805 + * allowed object is
  2806 + * {@link String }
  2807 + *
  2808 + */
  2809 + public void setGNameOther(String value) {
  2810 + this.gNameOther = value;
  2811 + }
  2812 +
  2813 + /**
  2814 + * Gets the value of the codeTsOther property.
  2815 + *
  2816 + * @return
  2817 + * possible object is
  2818 + * {@link String }
  2819 + *
  2820 + */
  2821 + public String getCodeTsOther() {
  2822 + return codeTsOther;
  2823 + }
  2824 +
  2825 + /**
  2826 + * Sets the value of the codeTsOther property.
  2827 + *
  2828 + * @param value
  2829 + * allowed object is
  2830 + * {@link String }
  2831 + *
  2832 + */
  2833 + public void setCodeTsOther(String value) {
  2834 + this.codeTsOther = value;
  2835 + }
  2836 +
  2837 + /**
  2838 + * Gets the value of the isClassDecision property.
  2839 + *
  2840 + * @return
  2841 + * possible object is
  2842 + * {@link String }
  2843 + *
  2844 + */
  2845 + public String getIsClassDecision() {
  2846 + return isClassDecision;
  2847 + }
  2848 +
  2849 + /**
  2850 + * Sets the value of the isClassDecision property.
  2851 + *
  2852 + * @param value
  2853 + * allowed object is
  2854 + * {@link String }
  2855 + *
  2856 + */
  2857 + public void setIsClassDecision(String value) {
  2858 + this.isClassDecision = value;
  2859 + }
  2860 +
  2861 + /**
  2862 + * Gets the value of the decisionNO property.
  2863 + *
  2864 + * @return
  2865 + * possible object is
  2866 + * {@link String }
  2867 + *
  2868 + */
  2869 + public String getDecisionNO() {
  2870 + return decisionNO;
  2871 + }
  2872 +
  2873 + /**
  2874 + * Sets the value of the decisionNO property.
  2875 + *
  2876 + * @param value
  2877 + * allowed object is
  2878 + * {@link String }
  2879 + *
  2880 + */
  2881 + public void setDecisionNO(String value) {
  2882 + this.decisionNO = value;
  2883 + }
  2884 +
  2885 + /**
  2886 + * Gets the value of the codeTsDecision property.
  2887 + *
  2888 + * @return
  2889 + * possible object is
  2890 + * {@link String }
  2891 + *
  2892 + */
  2893 + public String getCodeTsDecision() {
  2894 + return codeTsDecision;
  2895 + }
  2896 +
  2897 + /**
  2898 + * Sets the value of the codeTsDecision property.
  2899 + *
  2900 + * @param value
  2901 + * allowed object is
  2902 + * {@link String }
  2903 + *
  2904 + */
  2905 + public void setCodeTsDecision(String value) {
  2906 + this.codeTsDecision = value;
  2907 + }
  2908 +
  2909 + /**
  2910 + * Gets the value of the decisionCus property.
  2911 + *
  2912 + * @return
  2913 + * possible object is
  2914 + * {@link String }
  2915 + *
  2916 + */
  2917 + public String getDecisionCus() {
  2918 + return decisionCus;
  2919 + }
  2920 +
  2921 + /**
  2922 + * Sets the value of the decisionCus property.
  2923 + *
  2924 + * @param value
  2925 + * allowed object is
  2926 + * {@link String }
  2927 + *
  2928 + */
  2929 + public void setDecisionCus(String value) {
  2930 + this.decisionCus = value;
  2931 + }
  2932 +
  2933 + /**
  2934 + * Gets the value of the isSampleTest property.
  2935 + *
  2936 + * @return
  2937 + * possible object is
  2938 + * {@link String }
  2939 + *
  2940 + */
  2941 + public String getIsSampleTest() {
  2942 + return isSampleTest;
  2943 + }
  2944 +
  2945 + /**
  2946 + * Sets the value of the isSampleTest property.
  2947 + *
  2948 + * @param value
  2949 + * allowed object is
  2950 + * {@link String }
  2951 + *
  2952 + */
  2953 + public void setIsSampleTest(String value) {
  2954 + this.isSampleTest = value;
  2955 + }
  2956 +
  2957 + /**
  2958 + * Gets the value of the gOptions property.
  2959 + *
  2960 + * @return
  2961 + * possible object is
  2962 + * {@link String }
  2963 + *
  2964 + */
  2965 + public String getGOptions() {
  2966 + return gOptions;
  2967 + }
  2968 +
  2969 + /**
  2970 + * Sets the value of the gOptions property.
  2971 + *
  2972 + * @param value
  2973 + * allowed object is
  2974 + * {@link String }
  2975 + *
  2976 + */
  2977 + public void setGOptions(String value) {
  2978 + this.gOptions = value;
  2979 + }
  2980 +
  2981 + /**
  2982 + * Gets the value of the trafMode property.
  2983 + *
  2984 + * @return
  2985 + * possible object is
  2986 + * {@link String }
  2987 + *
  2988 + */
  2989 + public String getTrafMode() {
  2990 + return trafMode;
  2991 + }
  2992 +
  2993 + /**
  2994 + * Sets the value of the trafMode property.
  2995 + *
  2996 + * @param value
  2997 + * allowed object is
  2998 + * {@link String }
  2999 + *
  3000 + */
  3001 + public void setTrafMode(String value) {
  3002 + this.trafMode = value;
  3003 + }
  3004 +
  3005 + /**
  3006 + * Gets the value of the isDirectTraf property.
  3007 + *
  3008 + * @return
  3009 + * possible object is
  3010 + * {@link String }
  3011 + *
  3012 + */
  3013 + public String getIsDirectTraf() {
  3014 + return isDirectTraf;
  3015 + }
  3016 +
  3017 + /**
  3018 + * Sets the value of the isDirectTraf property.
  3019 + *
  3020 + * @param value
  3021 + * allowed object is
  3022 + * {@link String }
  3023 + *
  3024 + */
  3025 + public void setIsDirectTraf(String value) {
  3026 + this.isDirectTraf = value;
  3027 + }
  3028 +
  3029 + /**
  3030 + * Gets the value of the transitCountry property.
  3031 + *
  3032 + * @return
  3033 + * possible object is
  3034 + * {@link String }
  3035 + *
  3036 + */
  3037 + public String getTransitCountry() {
  3038 + return transitCountry;
  3039 + }
  3040 +
  3041 + /**
  3042 + * Sets the value of the transitCountry property.
  3043 + *
  3044 + * @param value
  3045 + * allowed object is
  3046 + * {@link String }
  3047 + *
  3048 + */
  3049 + public void setTransitCountry(String value) {
  3050 + this.transitCountry = value;
  3051 + }
  3052 +
  3053 + /**
  3054 + * Gets the value of the destPort property.
  3055 + *
  3056 + * @return
  3057 + * possible object is
  3058 + * {@link String }
  3059 + *
  3060 + */
  3061 + public String getDestPort() {
  3062 + return destPort;
  3063 + }
  3064 +
  3065 + /**
  3066 + * Sets the value of the destPort property.
  3067 + *
  3068 + * @param value
  3069 + * allowed object is
  3070 + * {@link String }
  3071 + *
  3072 + */
  3073 + public void setDestPort(String value) {
  3074 + this.destPort = value;
  3075 + }
  3076 +
  3077 + /**
  3078 + * Gets the value of the declPort property.
  3079 + *
  3080 + * @return
  3081 + * possible object is
  3082 + * {@link String }
  3083 + *
  3084 + */
  3085 + public String getDeclPort() {
  3086 + return declPort;
  3087 + }
  3088 +
  3089 + /**
  3090 + * Sets the value of the declPort property.
  3091 + *
  3092 + * @param value
  3093 + * allowed object is
  3094 + * {@link String }
  3095 + *
  3096 + */
  3097 + public void setDeclPort(String value) {
  3098 + this.declPort = value;
  3099 + }
  3100 +
  3101 + /**
  3102 + * Gets the value of the billNo property.
  3103 + *
  3104 + * @return
  3105 + * possible object is
  3106 + * {@link String }
  3107 + *
  3108 + */
  3109 + public String getBillNo() {
  3110 + return billNo;
  3111 + }
  3112 +
  3113 + /**
  3114 + * Sets the value of the billNo property.
  3115 + *
  3116 + * @param value
  3117 + * allowed object is
  3118 + * {@link String }
  3119 + *
  3120 + */
  3121 + public void setBillNo(String value) {
  3122 + this.billNo = value;
  3123 + }
  3124 +
  3125 + /**
  3126 + * Gets the value of the originCountry property.
  3127 + *
  3128 + * @return
  3129 + * possible object is
  3130 + * {@link String }
  3131 + *
  3132 + */
  3133 + public String getOriginCountry() {
  3134 + return originCountry;
  3135 + }
  3136 +
  3137 + /**
  3138 + * Sets the value of the originCountry property.
  3139 + *
  3140 + * @param value
  3141 + * allowed object is
  3142 + * {@link String }
  3143 + *
  3144 + */
  3145 + public void setOriginCountry(String value) {
  3146 + this.originCountry = value;
  3147 + }
  3148 +
  3149 + /**
  3150 + * Gets the value of the originMark property.
  3151 + *
  3152 + * @return
  3153 + * possible object is
  3154 + * {@link String }
  3155 + *
  3156 + */
  3157 + public String getOriginMark() {
  3158 + return originMark;
  3159 + }
  3160 +
  3161 + /**
  3162 + * Sets the value of the originMark property.
  3163 + *
  3164 + * @param value
  3165 + * allowed object is
  3166 + * {@link String }
  3167 + *
  3168 + */
  3169 + public void setOriginMark(String value) {
  3170 + this.originMark = value;
  3171 + }
  3172 +
  3173 + /**
  3174 + * Gets the value of the certCountry property.
  3175 + *
  3176 + * @return
  3177 + * possible object is
  3178 + * {@link String }
  3179 + *
  3180 + */
  3181 + public String getCertCountry() {
  3182 + return certCountry;
  3183 + }
  3184 +
  3185 + /**
  3186 + * Sets the value of the certCountry property.
  3187 + *
  3188 + * @param value
  3189 + * allowed object is
  3190 + * {@link String }
  3191 + *
  3192 + */
  3193 + public void setCertCountry(String value) {
  3194 + this.certCountry = value;
  3195 + }
  3196 +
  3197 + /**
  3198 + * Gets the value of the certNO property.
  3199 + *
  3200 + * @return
  3201 + * possible object is
  3202 + * {@link String }
  3203 + *
  3204 + */
  3205 + public String getCertNO() {
  3206 + return certNO;
  3207 + }
  3208 +
  3209 + /**
  3210 + * Sets the value of the certNO property.
  3211 + *
  3212 + * @param value
  3213 + * allowed object is
  3214 + * {@link String }
  3215 + *
  3216 + */
  3217 + public void setCertNO(String value) {
  3218 + this.certNO = value;
  3219 + }
  3220 +
  3221 + /**
  3222 + * Gets the value of the certStandard property.
  3223 + *
  3224 + * @return
  3225 + * possible object is
  3226 + * {@link String }
  3227 + *
  3228 + */
  3229 + public String getCertStandard() {
  3230 + return certStandard;
  3231 + }
  3232 +
  3233 + /**
  3234 + * Sets the value of the certStandard property.
  3235 + *
  3236 + * @param value
  3237 + * allowed object is
  3238 + * {@link String }
  3239 + *
  3240 + */
  3241 + public void setCertStandard(String value) {
  3242 + this.certStandard = value;
  3243 + }
  3244 +
  3245 + /**
  3246 + * Gets the value of the otherNote property.
  3247 + *
  3248 + * @return
  3249 + * possible object is
  3250 + * {@link String }
  3251 + *
  3252 + */
  3253 + public String getOtherNote() {
  3254 + return otherNote;
  3255 + }
  3256 +
  3257 + /**
  3258 + * Sets the value of the otherNote property.
  3259 + *
  3260 + * @param value
  3261 + * allowed object is
  3262 + * {@link String }
  3263 + *
  3264 + */
  3265 + public void setOtherNote(String value) {
  3266 + this.otherNote = value;
  3267 + }
  3268 +
  3269 + /**
  3270 + * Gets the value of the isSecret property.
  3271 + *
  3272 + * @return
  3273 + * possible object is
  3274 + * {@link String }
  3275 + *
  3276 + */
  3277 + public String getIsSecret() {
  3278 + return isSecret;
  3279 + }
  3280 +
  3281 + /**
  3282 + * Sets the value of the isSecret property.
  3283 + *
  3284 + * @param value
  3285 + * allowed object is
  3286 + * {@link String }
  3287 + *
  3288 + */
  3289 + public void setIsSecret(String value) {
  3290 + this.isSecret = value;
  3291 + }
  3292 +
  3293 + /**
  3294 + * Gets the value of the agentType property.
  3295 + *
  3296 + * @return
  3297 + * possible object is
  3298 + * {@link String }
  3299 + *
  3300 + */
  3301 + public String getAgentType() {
  3302 + return agentType;
  3303 + }
  3304 +
  3305 + /**
  3306 + * Sets the value of the agentType property.
  3307 + *
  3308 + * @param value
  3309 + * allowed object is
  3310 + * {@link String }
  3311 + *
  3312 + */
  3313 + public void setAgentType(String value) {
  3314 + this.agentType = value;
  3315 + }
  3316 +
  3317 + /**
  3318 + * Gets the value of the declAddr property.
  3319 + *
  3320 + * @return
  3321 + * possible object is
  3322 + * {@link String }
  3323 + *
  3324 + */
  3325 + public String getDeclAddr() {
  3326 + return declAddr;
  3327 + }
  3328 +
  3329 + /**
  3330 + * Sets the value of the declAddr property.
  3331 + *
  3332 + * @param value
  3333 + * allowed object is
  3334 + * {@link String }
  3335 + *
  3336 + */
  3337 + public void setDeclAddr(String value) {
  3338 + this.declAddr = value;
  3339 + }
  3340 +
  3341 + /**
  3342 + * Gets the value of the declPost property.
  3343 + *
  3344 + * @return
  3345 + * possible object is
  3346 + * {@link String }
  3347 + *
  3348 + */
  3349 + public String getDeclPost() {
  3350 + return declPost;
  3351 + }
  3352 +
  3353 + /**
  3354 + * Sets the value of the declPost property.
  3355 + *
  3356 + * @param value
  3357 + * allowed object is
  3358 + * {@link String }
  3359 + *
  3360 + */
  3361 + public void setDeclPost(String value) {
  3362 + this.declPost = value;
  3363 + }
  3364 +
  3365 + /**
  3366 + * Gets the value of the declTel property.
  3367 + *
  3368 + * @return
  3369 + * possible object is
  3370 + * {@link String }
  3371 + *
  3372 + */
  3373 + public String getDeclTel() {
  3374 + return declTel;
  3375 + }
  3376 +
  3377 + /**
  3378 + * Sets the value of the declTel property.
  3379 + *
  3380 + * @param value
  3381 + * allowed object is
  3382 + * {@link String }
  3383 + *
  3384 + */
  3385 + public void setDeclTel(String value) {
  3386 + this.declTel = value;
  3387 + }
  3388 +
  3389 +}
  1 +
  2 +package com.sy.message.generated;
  3 +
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElement;
  7 +import javax.xml.bind.annotation.XmlType;
  8 +
  9 +
  10 +/**
  11 + * 补充申报单签名信息
  12 + *
  13 + * <p>Java class for DecSupplementSignType complex type.
  14 + *
  15 + * <p>The following schema fragment specifies the expected content contained within this class.
  16 + *
  17 + * <pre>
  18 + * &lt;complexType name="DecSupplementSignType"&gt;
  19 + * &lt;complexContent&gt;
  20 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21 + * &lt;sequence&gt;
  22 + * &lt;element name="OperType"&gt;
  23 + * &lt;simpleType&gt;
  24 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  25 + * &lt;minLength value="1"/&gt;
  26 + * &lt;maxLength value="1"/&gt;
  27 + * &lt;/restriction&gt;
  28 + * &lt;/simpleType&gt;
  29 + * &lt;/element&gt;
  30 + * &lt;element name="IcCardId"&gt;
  31 + * &lt;simpleType&gt;
  32 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  33 + * &lt;minLength value="13"/&gt;
  34 + * &lt;maxLength value="13"/&gt;
  35 + * &lt;/restriction&gt;
  36 + * &lt;/simpleType&gt;
  37 + * &lt;/element&gt;
  38 + * &lt;element name="ClientSeqNo"&gt;
  39 + * &lt;simpleType&gt;
  40 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  41 + * &lt;minLength value="18"/&gt;
  42 + * &lt;maxLength value="18"/&gt;
  43 + * &lt;/restriction&gt;
  44 + * &lt;/simpleType&gt;
  45 + * &lt;/element&gt;
  46 + * &lt;element name="SignDate"&gt;
  47 + * &lt;simpleType&gt;
  48 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  49 + * &lt;minLength value="16"/&gt;
  50 + * &lt;maxLength value="16"/&gt;
  51 + * &lt;/restriction&gt;
  52 + * &lt;/simpleType&gt;
  53 + * &lt;/element&gt;
  54 + * &lt;element name="SignData"&gt;
  55 + * &lt;simpleType&gt;
  56 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  57 + * &lt;maxLength value="201"/&gt;
  58 + * &lt;minLength value="0"/&gt;
  59 + * &lt;/restriction&gt;
  60 + * &lt;/simpleType&gt;
  61 + * &lt;/element&gt;
  62 + * &lt;/sequence&gt;
  63 + * &lt;/restriction&gt;
  64 + * &lt;/complexContent&gt;
  65 + * &lt;/complexType&gt;
  66 + * </pre>
  67 + *
  68 + *
  69 + */
  70 +@XmlAccessorType(XmlAccessType.FIELD)
  71 +@XmlType(name = "DecSupplementSignType", propOrder = {
  72 + "operType",
  73 + "icCardId",
  74 + "clientSeqNo",
  75 + "signDate",
  76 + "signData"
  77 +})
  78 +public class DecSupplementSignType {
  79 +
  80 + @XmlElement(name = "OperType", required = true)
  81 + protected String operType;
  82 + @XmlElement(name = "IcCardId", required = true)
  83 + protected String icCardId;
  84 + @XmlElement(name = "ClientSeqNo", required = true)
  85 + protected String clientSeqNo;
  86 + @XmlElement(name = "SignDate", required = true)
  87 + protected String signDate;
  88 + @XmlElement(name = "SignData", required = true)
  89 + protected String signData;
  90 +
  91 + /**
  92 + * Gets the value of the operType property.
  93 + *
  94 + * @return
  95 + * possible object is
  96 + * {@link String }
  97 + *
  98 + */
  99 + public String getOperType() {
  100 + return operType;
  101 + }
  102 +
  103 + /**
  104 + * Sets the value of the operType property.
  105 + *
  106 + * @param value
  107 + * allowed object is
  108 + * {@link String }
  109 + *
  110 + */
  111 + public void setOperType(String value) {
  112 + this.operType = value;
  113 + }
  114 +
  115 + /**
  116 + * Gets the value of the icCardId property.
  117 + *
  118 + * @return
  119 + * possible object is
  120 + * {@link String }
  121 + *
  122 + */
  123 + public String getIcCardId() {
  124 + return icCardId;
  125 + }
  126 +
  127 + /**
  128 + * Sets the value of the icCardId property.
  129 + *
  130 + * @param value
  131 + * allowed object is
  132 + * {@link String }
  133 + *
  134 + */
  135 + public void setIcCardId(String value) {
  136 + this.icCardId = value;
  137 + }
  138 +
  139 + /**
  140 + * Gets the value of the clientSeqNo property.
  141 + *
  142 + * @return
  143 + * possible object is
  144 + * {@link String }
  145 + *
  146 + */
  147 + public String getClientSeqNo() {
  148 + return clientSeqNo;
  149 + }
  150 +
  151 + /**
  152 + * Sets the value of the clientSeqNo property.
  153 + *
  154 + * @param value
  155 + * allowed object is
  156 + * {@link String }
  157 + *
  158 + */
  159 + public void setClientSeqNo(String value) {
  160 + this.clientSeqNo = value;
  161 + }
  162 +
  163 + /**
  164 + * Gets the value of the signDate property.
  165 + *
  166 + * @return
  167 + * possible object is
  168 + * {@link String }
  169 + *
  170 + */
  171 + public String getSignDate() {
  172 + return signDate;
  173 + }
  174 +
  175 + /**
  176 + * Sets the value of the signDate property.
  177 + *
  178 + * @param value
  179 + * allowed object is
  180 + * {@link String }
  181 + *
  182 + */
  183 + public void setSignDate(String value) {
  184 + this.signDate = value;
  185 + }
  186 +
  187 + /**
  188 + * Gets the value of the signData property.
  189 + *
  190 + * @return
  191 + * possible object is
  192 + * {@link String }
  193 + *
  194 + */
  195 + public String getSignData() {
  196 + return signData;
  197 + }
  198 +
  199 + /**
  200 + * Sets the value of the signData property.
  201 + *
  202 + * @param value
  203 + * allowed object is
  204 + * {@link String }
  205 + *
  206 + */
  207 + public void setSignData(String value) {
  208 + this.signData = value;
  209 + }
  210 +
  211 +}
  1 +
  2 +package com.sy.message.generated;
  3 +
  4 +import javax.xml.bind.annotation.XmlRegistry;
  5 +
  6 +
  7 +/**
  8 + * This object contains factory methods for each
  9 + * Java content interface and Java element interface
  10 + * generated in the generated package.
  11 + * <p>An ObjectFactory allows you to programatically
  12 + * construct new instances of the Java representation
  13 + * for XML content. The Java representation of XML
  14 + * content can consist of schema derived interfaces
  15 + * and classes representing the binding of schema
  16 + * type definitions, element declarations and model
  17 + * groups. Factory methods for each of these are
  18 + * provided in this class.
  19 + *
  20 + */
  21 +@XmlRegistry
  22 +public class ObjectFactory {
  23 +
  24 +
  25 + /**
  26 + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: generated
  27 + *
  28 + */
  29 + public ObjectFactory() {
  30 + }
  31 +
  32 + /**
  33 + * Create an instance of {@link DecSupplementListType }
  34 + *
  35 + */
  36 + public DecSupplementListType createDecSupplementListType() {
  37 + return new DecSupplementListType();
  38 + }
  39 +
  40 + /**
  41 + * Create an instance of {@link DecSupplementSignType }
  42 + *
  43 + */
  44 + public DecSupplementSignType createDecSupplementSignType() {
  45 + return new DecSupplementSignType();
  46 + }
  47 +
  48 + /**
  49 + * Create an instance of {@link DecSDResponseType }
  50 + *
  51 + */
  52 + public DecSDResponseType createDecSDResponseType() {
  53 + return new DecSDResponseType();
  54 + }
  55 +
  56 +}
  1 +
  2 +package com.sy.message.model;
  3 +
  4 +import javax.persistence.Entity;
  5 +import javax.persistence.Id;
  6 +import javax.xml.bind.annotation.XmlAccessType;
  7 +import javax.xml.bind.annotation.XmlAccessorType;
  8 +import javax.xml.bind.annotation.XmlElement;
  9 +import javax.xml.bind.annotation.XmlType;
  10 +
  11 +
  12 +/**
  13 + * 报关单集装箱信息
  14 + *
  15 + * <p>Java class for DecContainerType complex type.
  16 + *
  17 + * <p>The following schema fragment specifies the expected content contained within this class.
  18 + *
  19 + * <pre>
  20 + * &lt;complexType name="DecContainerType"&gt;
  21 + * &lt;complexContent&gt;
  22 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  23 + * &lt;sequence&gt;
  24 + * &lt;element name="ContainerId"&gt;
  25 + * &lt;simpleType&gt;
  26 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  27 + * &lt;maxLength value="11"/&gt;
  28 + * &lt;/restriction&gt;
  29 + * &lt;/simpleType&gt;
  30 + * &lt;/element&gt;
  31 + * &lt;element name="ContainerMd"&gt;
  32 + * &lt;simpleType&gt;
  33 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  34 + * &lt;maxLength value="3"/&gt;
  35 + * &lt;pattern value=""/&gt;
  36 + * &lt;/restriction&gt;
  37 + * &lt;/simpleType&gt;
  38 + * &lt;/element&gt;
  39 + * &lt;element name="GoodsNo" minOccurs="0"&gt;
  40 + * &lt;simpleType&gt;
  41 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  42 + * &lt;maxLength value="100"/&gt;
  43 + * &lt;/restriction&gt;
  44 + * &lt;/simpleType&gt;
  45 + * &lt;/element&gt;
  46 + * &lt;element name="LclFlag" minOccurs="0"&gt;
  47 + * &lt;simpleType&gt;
  48 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  49 + * &lt;length value="1"/&gt;
  50 + * &lt;/restriction&gt;
  51 + * &lt;/simpleType&gt;
  52 + * &lt;/element&gt;
  53 + * &lt;element name="GoodsContaWt" minOccurs="0"&gt;
  54 + * &lt;simpleType&gt;
  55 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  56 + * &lt;/restriction&gt;
  57 + * &lt;/simpleType&gt;
  58 + * &lt;/element&gt;
  59 + * &lt;/sequence&gt;
  60 + * &lt;/restriction&gt;
  61 + * &lt;/complexContent&gt;
  62 + * &lt;/complexType&gt;
  63 + * </pre>
  64 + *
  65 + *
  66 + */
  67 +@XmlAccessorType(XmlAccessType.FIELD)
  68 +@XmlType(name = "DecContainerType", namespace = "http://www.chinaport.gov.cn/dec", propOrder = {
  69 + "containerId",
  70 + "containerMd",
  71 + "goodsNo",
  72 + "lclFlag",
  73 + "goodsContaWt"
  74 +})
  75 +@Entity
  76 +public class DecContainerType {
  77 +
  78 + @Id
  79 + @XmlElement(name = "ContainerId", namespace = "http://www.chinaport.gov.cn/dec", required = true)
  80 + protected String containerId;
  81 + @XmlElement(name = "ContainerMd", namespace = "http://www.chinaport.gov.cn/dec", required = true)
  82 + protected String containerMd;
  83 + @XmlElement(name = "GoodsNo", namespace = "http://www.chinaport.gov.cn/dec")
  84 + protected String goodsNo;
  85 + @XmlElement(name = "LclFlag", namespace = "http://www.chinaport.gov.cn/dec")
  86 + protected String lclFlag;
  87 + @XmlElement(name = "GoodsContaWt", namespace = "http://www.chinaport.gov.cn/dec")
  88 + protected String goodsContaWt;
  89 +
  90 + /**
  91 + * Gets the value of the containerId property.
  92 + *
  93 + * @return
  94 + * possible object is
  95 + * {@link String }
  96 + *
  97 + */
  98 + public String getContainerId() {
  99 + return containerId;
  100 + }
  101 +
  102 + /**
  103 + * Sets the value of the containerId property.
  104 + *
  105 + * @param value
  106 + * allowed object is
  107 + * {@link String }
  108 + *
  109 + */
  110 + public void setContainerId(String value) {
  111 + this.containerId = value;
  112 + }
  113 +
  114 + /**
  115 + * Gets the value of the containerMd property.
  116 + *
  117 + * @return
  118 + * possible object is
  119 + * {@link String }
  120 + *
  121 + */
  122 + public String getContainerMd() {
  123 + return containerMd;
  124 + }
  125 +
  126 + /**
  127 + * Sets the value of the containerMd property.
  128 + *
  129 + * @param value
  130 + * allowed object is
  131 + * {@link String }
  132 + *
  133 + */
  134 + public void setContainerMd(String value) {
  135 + this.containerMd = value;
  136 + }
  137 +
  138 + /**
  139 + * Gets the value of the goodsNo property.
  140 + *
  141 + * @return
  142 + * possible object is
  143 + * {@link String }
  144 + *
  145 + */
  146 + public String getGoodsNo() {
  147 + return goodsNo;
  148 + }
  149 +
  150 + /**
  151 + * Sets the value of the goodsNo property.
  152 + *
  153 + * @param value
  154 + * allowed object is
  155 + * {@link String }
  156 + *
  157 + */
  158 + public void setGoodsNo(String value) {
  159 + this.goodsNo = value;
  160 + }
  161 +
  162 + /**
  163 + * Gets the value of the lclFlag property.
  164 + *
  165 + * @return
  166 + * possible object is
  167 + * {@link String }
  168 + *
  169 + */
  170 + public String getLclFlag() {
  171 + return lclFlag;
  172 + }
  173 +
  174 + /**
  175 + * Sets the value of the lclFlag property.
  176 + *
  177 + * @param value
  178 + * allowed object is
  179 + * {@link String }
  180 + *
  181 + */
  182 + public void setLclFlag(String value) {
  183 + this.lclFlag = value;
  184 + }
  185 +
  186 + /**
  187 + * Gets the value of the goodsContaWt property.
  188 + *
  189 + * @return
  190 + * possible object is
  191 + * {@link String }
  192 + *
  193 + */
  194 + public String getGoodsContaWt() {
  195 + return goodsContaWt;
  196 + }
  197 +
  198 + /**
  199 + * Sets the value of the goodsContaWt property.
  200 + *
  201 + * @param value
  202 + * allowed object is
  203 + * {@link String }
  204 + *
  205 + */
  206 + public void setGoodsContaWt(String value) {
  207 + this.goodsContaWt = value;
  208 + }
  209 +
  210 +}
  1 +
  2 +package com.sy.message.model;
  3 +
  4 +import javax.persistence.Entity;
  5 +import javax.persistence.Id;
  6 +import javax.xml.bind.annotation.XmlAccessType;
  7 +import javax.xml.bind.annotation.XmlAccessorType;
  8 +import javax.xml.bind.annotation.XmlElement;
  9 +import javax.xml.bind.annotation.XmlType;
  10 +
  11 +
  12 +/**
  13 + * 企业资质信息
  14 + *
  15 + * <p>Java class for DecCopLimitType complex type.
  16 + *
  17 + * <p>The following schema fragment specifies the expected content contained within this class.
  18 + *
  19 + * <pre>
  20 + * &lt;complexType name="DecCopLimitType"&gt;
  21 + * &lt;complexContent&gt;
  22 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  23 + * &lt;sequence&gt;
  24 + * &lt;element name="EntQualifNo" minOccurs="0"&gt;
  25 + * &lt;simpleType&gt;
  26 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  27 + * &lt;maxLength value="40"/&gt;
  28 + * &lt;/restriction&gt;
  29 + * &lt;/simpleType&gt;
  30 + * &lt;/element&gt;
  31 + * &lt;element name="EntQualifTypeCode"&gt;
  32 + * &lt;simpleType&gt;
  33 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  34 + * &lt;maxLength value="5"/&gt;
  35 + * &lt;/restriction&gt;
  36 + * &lt;/simpleType&gt;
  37 + * &lt;/element&gt;
  38 + * &lt;/sequence&gt;
  39 + * &lt;/restriction&gt;
  40 + * &lt;/complexContent&gt;
  41 + * &lt;/complexType&gt;
  42 + * </pre>
  43 + *
  44 + *
  45 + */
  46 +@XmlAccessorType(XmlAccessType.FIELD)
  47 +@XmlType(name = "DecCopLimitType", namespace = "http://www.chinaport.gov.cn/dec", propOrder = {
  48 + "entQualifNo",
  49 + "entQualifTypeCode"
  50 +})
  51 +@Entity
  52 +public class DecCopLimitType {
  53 +
  54 + @Id
  55 + @XmlElement(name = "EntQualifNo", namespace = "http://www.chinaport.gov.cn/dec")
  56 + protected String entQualifNo;
  57 + @XmlElement(name = "EntQualifTypeCode", namespace = "http://www.chinaport.gov.cn/dec", required = true)
  58 + protected String entQualifTypeCode;
  59 +
  60 + /**
  61 + * Gets the value of the entQualifNo property.
  62 + *
  63 + * @return
  64 + * possible object is
  65 + * {@link String }
  66 + *
  67 + */
  68 + public String getEntQualifNo() {
  69 + return entQualifNo;
  70 + }
  71 +
  72 + /**
  73 + * Sets the value of the entQualifNo property.
  74 + *
  75 + * @param value
  76 + * allowed object is
  77 + * {@link String }
  78 + *
  79 + */
  80 + public void setEntQualifNo(String value) {
  81 + this.entQualifNo = value;
  82 + }
  83 +
  84 + /**
  85 + * Gets the value of the entQualifTypeCode property.
  86 + *
  87 + * @return
  88 + * possible object is
  89 + * {@link String }
  90 + *
  91 + */
  92 + public String getEntQualifTypeCode() {
  93 + return entQualifTypeCode;
  94 + }
  95 +
  96 + /**
  97 + * Sets the value of the entQualifTypeCode property.
  98 + *
  99 + * @param value
  100 + * allowed object is
  101 + * {@link String }
  102 + *
  103 + */
  104 + public void setEntQualifTypeCode(String value) {
  105 + this.entQualifTypeCode = value;
  106 + }
  107 +
  108 +}
  1 +
  2 +package com.sy.message.model;
  3 +
  4 +import javax.persistence.Id;
  5 +import javax.xml.bind.annotation.XmlAccessType;
  6 +import javax.xml.bind.annotation.XmlAccessorType;
  7 +import javax.xml.bind.annotation.XmlElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +
  11 +/**
  12 + * 报关单自由文本信息
  13 + *
  14 + * <p>Java class for DecFreeTxtType complex type.
  15 + *
  16 + * <p>The following schema fragment specifies the expected content contained within this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType name="DecFreeTxtType"&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name="RelId" minOccurs="0"&gt;
  24 + * &lt;simpleType&gt;
  25 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  26 + * &lt;maxLength value="18"/&gt;
  27 + * &lt;/restriction&gt;
  28 + * &lt;/simpleType&gt;
  29 + * &lt;/element&gt;
  30 + * &lt;element name="RelManNo" minOccurs="0"&gt;
  31 + * &lt;simpleType&gt;
  32 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  33 + * &lt;length value="12"/&gt;
  34 + * &lt;/restriction&gt;
  35 + * &lt;/simpleType&gt;
  36 + * &lt;/element&gt;
  37 + * &lt;element name="BonNo" minOccurs="0"&gt;
  38 + * &lt;simpleType&gt;
  39 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  40 + * &lt;maxLength value="32"/&gt;
  41 + * &lt;/restriction&gt;
  42 + * &lt;/simpleType&gt;
  43 + * &lt;/element&gt;
  44 + * &lt;element name="VoyNo" minOccurs="0"&gt;
  45 + * &lt;simpleType&gt;
  46 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  47 + * &lt;maxLength value="32"/&gt;
  48 + * &lt;/restriction&gt;
  49 + * &lt;/simpleType&gt;
  50 + * &lt;/element&gt;
  51 + * &lt;element name="DecBpNo" minOccurs="0"&gt;
  52 + * &lt;simpleType&gt;
  53 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  54 + * &lt;maxLength value="32"/&gt;
  55 + * &lt;/restriction&gt;
  56 + * &lt;/simpleType&gt;
  57 + * &lt;/element&gt;
  58 + * &lt;element name="CusFie" minOccurs="0"&gt;
  59 + * &lt;simpleType&gt;
  60 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  61 + * &lt;maxLength value="8"/&gt;
  62 + * &lt;/restriction&gt;
  63 + * &lt;/simpleType&gt;
  64 + * &lt;/element&gt;
  65 + * &lt;element name="DecNo" minOccurs="0"&gt;
  66 + * &lt;simpleType&gt;
  67 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  68 + * &lt;maxLength value="13"/&gt;
  69 + * &lt;pattern value="[0-9]{13}"/&gt;
  70 + * &lt;/restriction&gt;
  71 + * &lt;/simpleType&gt;
  72 + * &lt;/element&gt;
  73 + * &lt;/sequence&gt;
  74 + * &lt;/restriction&gt;
  75 + * &lt;/complexContent&gt;
  76 + * &lt;/complexType&gt;
  77 + * </pre>
  78 + *
  79 + *
  80 + */
  81 +@XmlAccessorType(XmlAccessType.FIELD)
  82 +@XmlType(name = "DecFreeTxtType", namespace = "http://www.chinaport.gov.cn/dec", propOrder = {
  83 + "relId",
  84 + "relManNo",
  85 + "bonNo",
  86 + "voyNo",
  87 + "decBpNo",
  88 + "cusFie",
  89 + "decNo"
  90 +})
  91 +public class DecFreeTxtType {
  92 +
  93 + @Id
  94 + @XmlElement(name = "RelId", namespace = "http://www.chinaport.gov.cn/dec")
  95 + protected String relId;
  96 + @XmlElement(name = "RelManNo", namespace = "http://www.chinaport.gov.cn/dec")
  97 + protected String relManNo;
  98 + @XmlElement(name = "BonNo", namespace = "http://www.chinaport.gov.cn/dec")
  99 + protected String bonNo;
  100 + @XmlElement(name = "VoyNo", namespace = "http://www.chinaport.gov.cn/dec")
  101 + protected String voyNo;
  102 + @XmlElement(name = "DecBpNo", namespace = "http://www.chinaport.gov.cn/dec")
  103 + protected String decBpNo;
  104 + @XmlElement(name = "CusFie", namespace = "http://www.chinaport.gov.cn/dec")
  105 + protected String cusFie;
  106 + @XmlElement(name = "DecNo", namespace = "http://www.chinaport.gov.cn/dec")
  107 + protected String decNo;
  108 +
  109 + /**
  110 + * Gets the value of the relId property.
  111 + *
  112 + * @return
  113 + * possible object is
  114 + * {@link String }
  115 + *
  116 + */
  117 + public String getRelId() {
  118 + return relId;
  119 + }
  120 +
  121 + /**
  122 + * Sets the value of the relId property.
  123 + *
  124 + * @param value
  125 + * allowed object is
  126 + * {@link String }
  127 + *
  128 + */
  129 + public void setRelId(String value) {
  130 + this.relId = value;
  131 + }
  132 +
  133 + /**
  134 + * Gets the value of the relManNo property.
  135 + *
  136 + * @return
  137 + * possible object is
  138 + * {@link String }
  139 + *
  140 + */
  141 + public String getRelManNo() {
  142 + return relManNo;
  143 + }
  144 +
  145 + /**
  146 + * Sets the value of the relManNo property.
  147 + *
  148 + * @param value
  149 + * allowed object is
  150 + * {@link String }
  151 + *
  152 + */
  153 + public void setRelManNo(String value) {
  154 + this.relManNo = value;
  155 + }
  156 +
  157 + /**
  158 + * Gets the value of the bonNo property.
  159 + *
  160 + * @return
  161 + * possible object is
  162 + * {@link String }
  163 + *
  164 + */
  165 + public String getBonNo() {
  166 + return bonNo;
  167 + }
  168 +
  169 + /**
  170 + * Sets the value of the bonNo property.
  171 + *
  172 + * @param value
  173 + * allowed object is
  174 + * {@link String }
  175 + *
  176 + */
  177 + public void setBonNo(String value) {
  178 + this.bonNo = value;
  179 + }
  180 +
  181 + /**
  182 + * Gets the value of the voyNo property.
  183 + *
  184 + * @return
  185 + * possible object is
  186 + * {@link String }
  187 + *
  188 + */
  189 + public String getVoyNo() {
  190 + return voyNo;
  191 + }
  192 +
  193 + /**
  194 + * Sets the value of the voyNo property.
  195 + *
  196 + * @param value
  197 + * allowed object is
  198 + * {@link String }
  199 + *
  200 + */
  201 + public void setVoyNo(String value) {
  202 + this.voyNo = value;
  203 + }
  204 +
  205 + /**
  206 + * Gets the value of the decBpNo property.
  207 + *
  208 + * @return
  209 + * possible object is
  210 + * {@link String }
  211 + *
  212 + */
  213 + public String getDecBpNo() {
  214 + return decBpNo;
  215 + }
  216 +
  217 + /**
  218 + * Sets the value of the decBpNo property.
  219 + *
  220 + * @param value
  221 + * allowed object is
  222 + * {@link String }
  223 + *
  224 + */
  225 + public void setDecBpNo(String value) {
  226 + this.decBpNo = value;
  227 + }
  228 +
  229 + /**
  230 + * Gets the value of the cusFie property.
  231 + *
  232 + * @return
  233 + * possible object is
  234 + * {@link String }
  235 + *
  236 + */
  237 + public String getCusFie() {
  238 + return cusFie;
  239 + }
  240 +
  241 + /**
  242 + * Sets the value of the cusFie property.
  243 + *
  244 + * @param value
  245 + * allowed object is
  246 + * {@link String }
  247 + *
  248 + */
  249 + public void setCusFie(String value) {
  250 + this.cusFie = value;
  251 + }
  252 +
  253 + /**
  254 + * Gets the value of the decNo property.
  255 + *
  256 + * @return
  257 + * possible object is
  258 + * {@link String }
  259 + *
  260 + */
  261 + public String getDecNo() {
  262 + return decNo;
  263 + }
  264 +
  265 + /**
  266 + * Sets the value of the decNo property.
  267 + *
  268 + * @param value
  269 + * allowed object is
  270 + * {@link String }
  271 + *
  272 + */
  273 + public void setDecNo(String value) {
  274 + this.decNo = value;
  275 + }
  276 +
  277 +}
  1 +
  2 +package com.sy.message.model;
  3 +
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElement;
  7 +import javax.xml.bind.annotation.XmlType;
  8 +import java.util.ArrayList;
  9 +import java.util.List;
  10 +
  11 +
  12 +/**
  13 + * 许可证
  14 + *
  15 + * <p>Java class for DecGoodsLimitType complex type.
  16 + *
  17 + * <p>The following schema fragment specifies the expected content contained within this class.
  18 + *
  19 + * <pre>
  20 + * &lt;complexType name="DecGoodsLimitType"&gt;
  21 + * &lt;complexContent&gt;
  22 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  23 + * &lt;sequence&gt;
  24 + * &lt;element name="GoodsNo"&gt;
  25 + * &lt;simpleType&gt;
  26 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  27 + * &lt;maxLength value="9"/&gt;
  28 + * &lt;/restriction&gt;
  29 + * &lt;/simpleType&gt;
  30 + * &lt;/element&gt;
  31 + * &lt;element name="LicTypeCode"&gt;
  32 + * &lt;simpleType&gt;
  33 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  34 + * &lt;maxLength value="5"/&gt;
  35 + * &lt;/restriction&gt;
  36 + * &lt;/simpleType&gt;
  37 + * &lt;/element&gt;
  38 + * &lt;element name="LicenceNo" minOccurs="0"&gt;
  39 + * &lt;simpleType&gt;
  40 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  41 + * &lt;maxLength value="40"/&gt;
  42 + * &lt;/restriction&gt;
  43 + * &lt;/simpleType&gt;
  44 + * &lt;/element&gt;
  45 + * &lt;element name="LicWrtofDetailNo" minOccurs="0"&gt;
  46 + * &lt;simpleType&gt;
  47 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  48 + * &lt;maxLength value="2"/&gt;
  49 + * &lt;/restriction&gt;
  50 + * &lt;/simpleType&gt;
  51 + * &lt;/element&gt;
  52 + * &lt;element name="LicWrtofQty" minOccurs="0"&gt;
  53 + * &lt;simpleType&gt;
  54 + * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
  55 + * &lt;maxLength value="20"/&gt;
  56 + * &lt;/restriction&gt;
  57 + * &lt;/simpleType&gt;
  58 + * &lt;/element&gt;
  59 + * &lt;element name="DecGoodsLimitVin" type="{http://www.chinaport.gov.cn/dec}DecGoodsLimitVinType" maxOccurs="unbounded" minOccurs="0"/&gt;
  60 + * &lt;/sequence&gt;
  61 + * &lt;/restriction&gt;
  62 + * &lt;/complexContent&gt;
  63 + * &lt;/complexType&gt;
  64 + * </pre>
  65 + *
  66 + *
  67 + */
  68 +@XmlAccessorType(XmlAccessType.FIELD)
  69 +@XmlType(name = "DecGoodsLimitType", namespace = "http://www.chinaport.gov.cn/dec", propOrder = {
  70 + "goodsNo",
  71 + "licTypeCode",
  72 + "licenceNo",
  73 + "licWrtofDetailNo",
  74 + "licWrtofQty",
  75 + "decGoodsLimitVin"
  76 +})
  77 +public class DecGoodsLimitType {
  78 +
  79 + @XmlElement(name = "GoodsNo", namespace = "http://www.chinaport.gov.cn/dec", required = true)
  80 + protected String goodsNo;
  81 + @XmlElement(name = "LicTypeCode", namespace = "http://www.chinaport.gov.cn/dec", required = true)
  82 + protected String licTypeCode;
  83 + @XmlElement(name = "LicenceNo", namespace = "http://www.chinaport.gov.cn/dec")
  84 + protected String licenceNo;
  85 + @XmlElement(name = "LicWrtofDetailNo", namespace = "http://www.chinaport.gov.cn/dec")
  86 + protected String licWrtofDetailNo;
  87 + @XmlElement(name = "LicWrtofQty", namespace = "http://www.chinaport.gov.cn/dec")
  88 + protected String licWrtofQty;
  89 + @XmlElement(name = "DecGoodsLimitVin", namespace = "http://www.chinaport.gov.cn/dec")
  90 + protected List<DecGoodsLimitVinType> decGoodsLimitVin;
  91 +
  92 + /**
  93 + * Gets the value of the goodsNo property.
  94 + *
  95 + * @return
  96 + * possible object is
  97 + * {@link String }
  98 + *
  99 + */
  100 + public String getGoodsNo() {
  101 + return goodsNo;
  102 + }
  103 +
  104 + /**
  105 + * Sets the value of the goodsNo property.
  106 + *
  107 + * @param value
  108 + * allowed object is
  109 + * {@link String }
  110 + *
  111 + */
  112 + public void setGoodsNo(String value) {
  113 + this.goodsNo = value;
  114 + }
  115 +
  116 + /**
  117 + * Gets the value of the licTypeCode property.
  118 + *
  119 + * @return
  120 + * possible object is
  121 + * {@link String }
  122 + *
  123 + */
  124 + public String getLicTypeCode() {
  125 + return licTypeCode;
  126 + }
  127 +
  128 + /**
  129 + * Sets the value of the licTypeCode property.
  130 + *
  131 + * @param value
  132 + * allowed object is
  133 + * {@link String }
  134 + *
  135 + */
  136 + public void setLicTypeCode(String value) {
  137 + this.licTypeCode = value;
  138 + }
  139 +
  140 + /**
  141 + * Gets the value of the licenceNo property.
  142 + *
  143 + * @return
  144 + * possible object is
  145 + * {@link String }
  146 + *
  147 + */
  148 + public String getLicenceNo() {
  149 + return licenceNo;
  150 + }
  151 +
  152 + /**
  153 + * Sets the value of the licenceNo property.
  154 + *
  155 + * @param value
  156 + * allowed object is
  157 + * {@link String }
  158 + *
  159 + */
  160 + public void setLicenceNo(String value) {
  161 + this.licenceNo = value;
  162 + }
  163 +
  164 + /**
  165 + * Gets the value of the licWrtofDetailNo property.
  166 + *
  167 + * @return
  168 + * possible object is
  169 + * {@link String }
  170 + *
  171 + */
  172 + public String getLicWrtofDetailNo() {
  173 + return licWrtofDetailNo;
  174 + }
  175 +
  176 + /**
  177 + * Sets the value of the licWrtofDetailNo property.
  178 + *
  179 + * @param value
  180 + * allowed object is
  181 + * {@link String }
  182 + *
  183 + */
  184 + public void setLicWrtofDetailNo(String value) {
  185 + this.licWrtofDetailNo = value;
  186 + }
  187 +
  188 + /**
  189 + * Gets the value of the licWrtofQty property.
  190 + *
  191 + * @return
  192 + * possible object is
  193 + * {@link String }
  194 + *
  195 + */
  196 + public String getLicWrtofQty() {
  197 + return licWrtofQty;
  198 + }
  199 +
  200 + /**
  201 + * Sets the value of the licWrtofQty property.
  202 + *
  203 + * @param value
  204 + * allowed object is
  205 + * {@link String }
  206 + *
  207 + */
  208 + public void setLicWrtofQty(String value) {
  209 + this.licWrtofQty = value;
  210 + }
  211 +
  212 + /**
  213 + * Gets the value of the decGoodsLimitVin property.
  214 + *
  215 + * <p>
  216 + * This accessor method returns a reference to the live list,
  217 + * not a snapshot. Therefore any modification you make to the
  218 + * returned list will be present inside the JAXB object.
  219 + * This is why there is not a <CODE>set</CODE> method for the decGoodsLimitVin property.
  220 + *
  221 + * <p>
  222 + * For example, to add a new item, do as follows:
  223 + * <pre>
  224 + * getDecGoodsLimitVin().add(newItem);
  225 + * </pre>
  226 + *
  227 + *
  228 + * <p>
  229 + * Objects of the following type(s) are allowed in the list
  230 + * {@link DecGoodsLimitVinType }
  231 + *
  232 + *
  233 + */
  234 + public List<DecGoodsLimitVinType> getDecGoodsLimitVin() {
  235 + if (decGoodsLimitVin == null) {
  236 + decGoodsLimitVin = new ArrayList<DecGoodsLimitVinType>();
  237 + }
  238 + return this.decGoodsLimitVin;
  239 + }
  240 +
  241 + public void setDecGoodsLimitVin(List<DecGoodsLimitVinType> decGoodsLimitVin){
  242 + this.decGoodsLimitVin = decGoodsLimitVin;
  243 + }
  244 +
  245 +}