ソースを参照

git-svn-id: https://192.168.57.71/svn/jsgkj@167 931142cf-59ea-a443-aa0e-51397b428577

ld_xuhx 9 年 前
コミット
1aeeea7e82

+ 1 - 1
gkjsjy/trunk/src/com/xt/jygl/gkjsgl/jsjdcbsj/client/JsjdcbsjService.java

@@ -53,7 +53,7 @@ public class JsjdcbsjService
 	 */
 	public static URL getWsdlLocationByIp(String ip, String port) {
 		URL url = null;
-		String wsdl = "http://" + ip + ":" + port + "/JsjdcbsjService?wsdl";
+		String wsdl = "http://" + ip + ":" + port + "/jsjdcbsjService?wsdl";
 		try {
 			URL baseUrl;
 			baseUrl = AxService.class.getResource(".");

+ 0 - 8
gkjsjy/trunk/src/com/xt/jygl/gkjsgl/jsjdcbsj/client/ObjectFactory.java

@@ -67,14 +67,6 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link Timestamp }
-     * 
-     */
-    public Timestamp createTimestamp() {
-        return new Timestamp();
-    }
-
-    /**
      * Create an instance of {@link JsjdcbsjEntity }
      * 
      */

+ 0 - 52
gkjsjy/trunk/src/com/xt/jygl/gkjsgl/jsjdcbsj/client/Timestamp.java

@@ -1,52 +0,0 @@
-
-package com.xt.jygl.gkjsgl.jsjdcbsj.client;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for timestamp complex type.
- * 
- * <p>The following schema fragment specifies the expected content contained within this class.
- * 
- * <pre>
- * &lt;complexType name="timestamp">
- *   &lt;complexContent>
- *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       &lt;sequence>
- *         &lt;element name="nanos" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       &lt;/sequence>
- *     &lt;/restriction>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- * 
- * 
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "timestamp", propOrder = {
-    "nanos"
-})
-public class Timestamp {
-
-    protected int nanos;
-
-    /**
-     * Gets the value of the nanos property.
-     * 
-     */
-    public int getNanos() {
-        return nanos;
-    }
-
-    /**
-     * Sets the value of the nanos property.
-     * 
-     */
-    public void setNanos(int value) {
-        this.nanos = value;
-    }
-
-}