Commit a2845821 by 焦荣

Merge remote-tracking branch 'origin/master'

parents d1ea7eff 636a3100
package com.founder.amsis.client.afis;
import java.net.MalformedURLException;
import java.util.Collection;
import java.util.HashMap;
import javax.xml.namespace.QName;
import org.codehaus.xfire.XFireRuntimeException;
import org.codehaus.xfire.aegis.AegisBindingProvider;
import org.codehaus.xfire.annotations.AnnotationServiceFactory;
import org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations;
import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.jaxb2.JaxbTypeRegistry;
import org.codehaus.xfire.service.Endpoint;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.soap.AbstractSoapBinding;
import org.codehaus.xfire.transport.TransportManager;
public class AMSISClient {
private static XFireProxyFactory proxyFactory = new XFireProxyFactory();
private HashMap endpoints = new HashMap();
private Service service0;
public AMSISClient() {
create0();
Endpoint AMSISHttpPortEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), "http://192.168.128.244:7001/AMSISSERVICE/services/AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), AMSISHttpPortEP);
Endpoint AMSISPortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "xfire.local://AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), AMSISPortTypeLocalEndpointEP);
}
public AMSISClient(String serviceUrl) {
create0();
Endpoint AMSISHttpPortEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), serviceUrl);
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort"), AMSISHttpPortEP);
Endpoint AMSISPortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "xfire.local://AMSIS");
endpoints.put(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint"), AMSISPortTypeLocalEndpointEP);
}
public Object getEndpoint(Endpoint endpoint) {
try {
return proxyFactory.create((endpoint).getBinding(), (endpoint).getUrl());
} catch (MalformedURLException e) {
throw new XFireRuntimeException("Invalid URL", e);
}
}
public Object getEndpoint(QName name) {
Endpoint endpoint = ((Endpoint) endpoints.get((name)));
if ((endpoint) == null) {
throw new IllegalStateException("No such endpoint!");
}
return getEndpoint((endpoint));
}
public Collection getEndpoints() {
return endpoints.values();
}
private void create0() {
TransportManager tm = (org.codehaus.xfire.XFireFactory.newInstance().getXFire().getTransportManager());
HashMap props = new HashMap();
props.put("annotations.allow.interface", true);
AnnotationServiceFactory asf = new AnnotationServiceFactory(new Jsr181WebAnnotations(), tm, new AegisBindingProvider(new JaxbTypeRegistry()));
asf.setBindingCreationEnabled(false);
service0 = asf.create((com.founder.amsis.client.afis.AMSISPortType.class), props);
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalBinding"), "urn:xfire:transport:local");
}
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://afis.service.amsis.highland.com", "AMSISHttpBinding"), "http://schemas.xmlsoap.org/soap/http");
}
}
public AMSISPortType getAMSISHttpPort() {
return ((AMSISPortType)(this).getEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISHttpPort")));
}
public AMSISPortType getAMSISHttpPort(String url) {
AMSISPortType var = getAMSISHttpPort();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}
public AMSISPortType getAMSISPortTypeLocalEndpoint() {
return ((AMSISPortType)(this).getEndpoint(new QName("http://afis.service.amsis.highland.com", "AMSISPortTypeLocalEndpoint")));
}
public AMSISPortType getAMSISPortTypeLocalEndpoint(String url) {
AMSISPortType var = getAMSISPortTypeLocalEndpoint();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}
public static void main(String[] args) {
System.out.println("t11111");
AMSISClient client = new AMSISClient();
//create a default service endpoint
AMSISPortType service = client.getAMSISHttpPort();
// service.setPersonInfo(in0, in1, in2);
// service.save_PersonPic();
//TODO: Add custom client code here
//
//service.yourServiceOperationHere();
System.out.println("test client completed");
System.exit(0);
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "checkHPSeqno")
public class CheckHPSeqno {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "checkHPSeqnoResponse")
public class CheckHPSeqnoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getBKHitInfo")
public class GetBKHitInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getBKHitInfoResponse")
public class GetBKHitInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getLatHPSeqno")
public class GetLatHPSeqno {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getLatHPSeqnoResponse")
public class GetLatHPSeqnoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getLogicDB")
public class GetLogicDB {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getLogicDBResponse")
public class GetLogicDBResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "save_PersonPic")
public class SavePersonPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "save_PersonPicResponse")
public class SavePersonPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "setCaseInfo")
public class SetCaseInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setCaseInfoResponse")
public class SetCaseInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setEditInterface")
public class SetEditInterface {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setEditInterfaceResponse")
public class SetEditInterfaceResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATHPCPRPic")
public class SetLATHPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATHPCPRPicResponse")
public class SetLATHPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATHPORGPic")
public class SetLATHPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATHPORGPicResponse")
public class SetLATHPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATMNT")
public class SetLATMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATMNTResponse")
public class SetLATMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATORGPic")
public class SetLATORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATORGPicResponse")
public class SetLATORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setLATSCAN")
public class SetLATSCAN {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setLATSCANResponse")
public class SetLATSCANResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPCPRPic")
public class SetPFPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPCPRPicResponse")
public class SetPFPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPMNT")
public class SetPFPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPMNTResponse")
public class SetPFPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPFPORGPic")
public class SetPFPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPFPORGPicResponse")
public class SetPFPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPCPRPic")
public class SetPLPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPCPRPicResponse")
public class SetPLPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPMNT")
public class SetPLPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPMNTResponse")
public class SetPLPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPLPORGPic")
public class SetPLPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPLPORGPicResponse")
public class SetPLPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "setPersonInfo")
public class SetPersonInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPersonInfoResponse")
public class SetPersonInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPersonScan")
public class SetPersonScan {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPersonScanResponse")
public class SetPersonScanResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setPsnOrCaseQueue")
public class SetPsnOrCaseQueue {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setPsnOrCaseQueueResponse")
public class SetPsnOrCaseQueueResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPCPRPic")
public class SetRFPCPRPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPCPRPicResponse")
public class SetRFPCPRPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPMNT")
public class SetRFPMNT {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPMNTResponse")
public class SetRFPMNTResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0"
})
@XmlRootElement(name = "setRFPORGPic")
public class SetRFPORGPic {
@XmlElement(required = true, nillable = true)
protected String in0;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "setRFPORGPicResponse")
public class SetRFPORGPicResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3"
})
@XmlRootElement(name = "synInfo")
public class SynInfo {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
@XmlElement(required = true, nillable = true)
protected String in3;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* Gets the value of the in2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* Sets the value of the in2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
/**
* Gets the value of the in3 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn3() {
return in3;
}
/**
* Sets the value of the in3 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn3(String value) {
this.in3 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "synInfoResponse")
public class SynInfoResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* Gets the value of the out property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* Sets the value of the out property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "updateXKTabStaus")
public class UpdateXKTabStaus {
@XmlElement(required = true, nillable = true)
protected String in0;
@XmlElement(required = true, nillable = true)
protected String in1;
/**
* Gets the value of the in0 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn0() {
return in0;
}
/**
* Sets the value of the in0 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn0(String value) {
this.in0 = value;
}
/**
* Gets the value of the in1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* Sets the value of the in1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
}
package com.founder.amsis.service.afis;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "updateXKTabStausResponse")
public class UpdateXKTabStausResponse {
protected int out;
/**
* Gets the value of the out property.
*
*/
public int getOut() {
return out;
}
/**
* Sets the value of the out property.
*
*/
public void setOut(int value) {
this.out = value;
}
}
@javax.xml.bind.annotation.XmlSchema(namespace = "http://afis.service.amsis.highland.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package com.founder.amsis.service.afis;
......@@ -14,7 +14,7 @@ public class DefaultViewConfig implements WebMvcConfigurer {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/toLogin").setViewName("login/login_hainan");
registry.addViewController("/toLogin").setViewName("login/login_dongguan");
registry.addViewController("/hncsLogin").setViewName("login/login_hncs");
registry.addViewController("/hnzzLogin").setViewName("login/login_hnzz");
registry.addViewController("/hnxtLogin").setViewName("login/login_hnxt");
......@@ -31,14 +31,16 @@ public class DefaultViewConfig implements WebMvcConfigurer {
registry.addViewController("/hainanLogin").setViewName("login/login_hainan");
registry.addViewController("/neimengLogin").setViewName("login/login_neimeng");
registry.addViewController("/dongguanLogin").setViewName("login/login_dongguan");
registry.addViewController("/noLogin").setViewName("login/login_hainan");
registry.addViewController("/").setViewName("login/login_hainan");
registry.addViewController("/noLogin").setViewName("login/login_dongguan");
registry.addViewController("/").setViewName("login/login_dongguan");
registry.addViewController("/toFjxz").setViewName("login/fjxz/common_fjxz");
registry.addViewController("/toCzsmxz").setViewName("login/fjxz/common_czsm");
registry.addViewController("/toObjectKJ").setViewName("rygl/objectKJ");
registry.addViewController("/catchimg").setViewName("rygl/demo");
registry.addViewController("/dnabqdy").setViewName("rygl/dnabqdy");
//registry.addViewController("/ryxxwfcjsm").setViewName("rygl/ryxxwfcjsm");
registry.addViewController("/iframe1").setViewName("zlcc/iframe1");
registry.addViewController("/iframe2").setViewName("zlcc/iframe2");
registry.addViewController("/iframe3").setViewName("zwbzgl/iframe1");
......
......@@ -17,7 +17,7 @@ public class FilterConfig extends WebMvcConfigurerAdapter {
//
registry.addInterceptor(InterceptorConfig).
addPathPatterns("/**").
excludePathPatterns("/","/toLogin","/hncsLogin","/hnzzLogin","/hnxtLogin","/hnhyLogin","/hnsyLogin","/hnyueyLogin","/hnzjjLogin","/hncdLogin","/hnyiyLogin","/hnczLogin","/hnyzLogin","/hnhhLogin","/hnldLogin","/hnxxLogin","/hainanLogin","/neimengLogin","/getSjcntDetail","/noLogin","/saveSwSjXx",
excludePathPatterns("/","/toLogin","/hncsLogin","/hnzzLogin","/hnxtLogin","/hnhyLogin","/hnsyLogin","/hnyueyLogin","/hnzjjLogin","/hncdLogin","/hnyiyLogin","/hnczLogin","/hnyzLogin","/hnhhLogin","/hnldLogin","/hnxxLogin","/hainanLogin","/neimengLogin","/dongguanLogin","/getSjcntDetail","/noLogin","/saveSwSjXx",
"/saveHmSjXx","/getSwSjXx","/getYthcjryxxByZjhm","/getYthcjUser","/getZfbaUser","/getZwbzJbxxCnt","/getCcbzJbxxCnt","/toswcj",
"/doLogin","/toHome","/static*//**","/refreshCodeCache","/qxdoLogin","/queryNameByCode","/queryTypeCode","/toFjxz","/toCzsmxz","/download/**","/toObjectKJ","/catchimg","/iframe1","/iframe2","/xj","/report","/SavePersonInfo4Nmtc","/singleLoginAct",
"/getYhkDetail","/getSwDetail","/getRyzjzpimages","/getRyzpimages","/getPmimages","/getGdimages"
......
package com.founder.controller;
import com.alibaba.fastjson.JSON;
import com.founder.amsisDao.NewDataSourceDao;
import com.founder.dao.DemoDao;
import com.founder.login.service.LoginService;
import com.founder.model.AutoXxwcjsm;
import com.founder.model.TbXwYthcjZj;
import com.founder.model.User;
import com.founder.module.redis.service.IDicItemService;
import com.founder.service.IXxwcjsmService;
import com.founder.utils.SysUitl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.*;
/**
* Created by libin on 2018/4/10.
*/
@Controller
public class xxwfcjsmController {
private Logger log= LoggerFactory.getLogger(xxwfcjsmController.class);
@Autowired
private IXxwcjsmService xxwcjsmService;
@RequestMapping("/ryxxwfcjsm")
public ModelAndView ryxxwfcjsm(ModelAndView model, HttpServletRequest request) {
model.addObject("rybh",request.getParameter("rybh"));
model.addObject("xm",request.getParameter("xm"));
model.addObject("gmsfhm",request.getParameter("gmsfhm"));
List<AutoXxwcjsm> xxwcjsms = xxwcjsmService.getXxwcjsm(request.getParameter("rybh"));
AutoXxwcjsm xxwcjsm = null;
if(xxwcjsms==null||xxwcjsms.size()<=0){
xxwcjsm = new AutoXxwcjsm();
model.addObject("type","0");
}else{
xxwcjsm = xxwcjsms.get(0);
model.addObject("type","1");
}
model.addObject("xxwcjsm",xxwcjsm);
model.setViewName("rygl/ryxxwfcjsm");
return model;
}
@RequestMapping("/doSaveWcjsm")
public String doSaveZjxx(AutoXxwcjsm xxwcjsm,String type, Model model, HttpServletRequest request, HttpServletResponse response) {
User user = (User) request.getSession().getAttribute("User");
model.addAttribute("username",user.getUsername());
model.addAttribute("unitcode",user.getUnitcode());
xxwcjsm.setLrr(user.getUsername());
xxwcjsm.setLrdwdm(user.getUnitcode());
xxwcjsm.setGxdwdm(user.getUnitcode());
xxwcjsm.setGxr(user.getUsername());
boolean flg = false;
if("1".equals(type)){
flg = xxwcjsmService.updateXxwcjsm(xxwcjsm);
}else{
flg = xxwcjsmService.saveXxwcjsm(xxwcjsm);
}
model.addAttribute("rybh",xxwcjsm.getRybh());
model.addAttribute("xm",xxwcjsm.getXm());
model.addAttribute("zjhm",xxwcjsm.getGmsfhm());
model.addAttribute("flag",flg);
model.addAttribute("xxwcjsm",xxwcjsm);
return "zjcj/zjcj.html";
}
}
package com.founder.dao;
import com.founder.model.AutoXxwcjsm;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
@Mapper
public interface XxwcjsmDao {
Boolean insertXxwcjsm(AutoXxwcjsm entity);
Boolean updateXxwcjsm(AutoXxwcjsm entity);
List<AutoXxwcjsm> getXxwcjsm(String rybh);
}
......@@ -51,6 +51,7 @@ public class AutoTbRyZp implements Serializable {
private String xzpp;
private String xzcm;
private String sfcj;
private String sfts;
private String tmtzms;
public static long getSerialVersionUID() {
......@@ -273,6 +274,14 @@ public class AutoTbRyZp implements Serializable {
this.sfcj = sfcj;
}
public String getSfts() {
return sfts;
}
public void setSfts(String sfts) {
this.sfts = sfts;
}
@Override
public String toString() {
return "AutoTbRyZp{" +
......
package com.founder.model;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Date;
@Table(name = "TB_XW_YTHCJ_RYXXWCJSM")
public class AutoXxwcjsm implements Serializable {
private static final long serialVersionUID = 1L;
//人员编号
private String rybh = null;
private String xm = null;
private String gmsfhm = null;
private String wcjx = null;
private String wcjsm = null;
//电子文件内容
private byte[] zpsj0 = null;
private byte[] zpsj1 = null;
private byte[] zpsj2 = null;
private byte[] zpsj3 = null;
private String img0Str64 = null;
private String img1Str64 = null;
private String img2Str64 = null;
private String img3Str64 = null;
private String scbz = null;
private String lrr = null;
private String lrdwdm = null;
private String lrdwmc = null;
private Date lrsj = null;
private String gxr = null;
private Date gxsj = null;
private String gxdwdm = null;
private String gxdwmc = null;
public static long getSerialVersionUID() {
return serialVersionUID;
}
public String getRybh() {
return rybh;
}
public void setRybh(String rybh) {
this.rybh = rybh;
}
public String getXm() {
return xm;
}
public void setXm(String xm) {
this.xm = xm;
}
public String getGmsfhm() {
return gmsfhm;
}
public void setGmsfhm(String gmsfhm) {
this.gmsfhm = gmsfhm;
}
public String getWcjx() {
return wcjx;
}
public void setWcjx(String wcjx) {
this.wcjx = wcjx;
}
public String getWcjsm() {
return wcjsm;
}
public void setWcjsm(String wcjsm) {
this.wcjsm = wcjsm;
}
public byte[] getZpsj0() {
return zpsj0;
}
public void setZpsj0(byte[] zpsj0) {
this.zpsj0 = zpsj0;
}
public byte[] getZpsj1() {
return zpsj1;
}
public void setZpsj1(byte[] zpsj1) {
this.zpsj1 = zpsj1;
}
public byte[] getZpsj2() {
return zpsj2;
}
public void setZpsj2(byte[] zpsj2) {
this.zpsj2 = zpsj2;
}
public byte[] getZpsj3() {
return zpsj3;
}
public void setZpsj3(byte[] zpsj3) {
this.zpsj3 = zpsj3;
}
public String getScbz() {
return scbz;
}
public void setScbz(String scbz) {
this.scbz = scbz;
}
public String getLrr() {
return lrr;
}
public void setLrr(String lrr) {
this.lrr = lrr;
}
public String getLrdwdm() {
return lrdwdm;
}
public void setLrdwdm(String lrdwdm) {
this.lrdwdm = lrdwdm;
}
public String getLrdwmc() {
return lrdwmc;
}
public void setLrdwmc(String lrdwmc) {
this.lrdwmc = lrdwmc;
}
public Date getLrsj() {
return lrsj;
}
public void setLrsj(Date lrsj) {
this.lrsj = lrsj;
}
public String getGxr() {
return gxr;
}
public void setGxr(String gxr) {
this.gxr = gxr;
}
public Date getGxsj() {
return gxsj;
}
public void setGxsj(Date gxsj) {
this.gxsj = gxsj;
}
public String getGxdwdm() {
return gxdwdm;
}
public void setGxdwdm(String gxdwdm) {
this.gxdwdm = gxdwdm;
}
public String getGxdwmc() {
return gxdwmc;
}
public void setGxdwmc(String gxdwmc) {
this.gxdwmc = gxdwmc;
}
public String getImg0Str64() {
return img0Str64;
}
public void setImg0Str64(String img0Str64) {
this.img0Str64 = img0Str64;
}
public String getImg1Str64() {
return img1Str64;
}
public void setImg1Str64(String img1Str64) {
this.img1Str64 = img1Str64;
}
public String getImg2Str64() {
return img2Str64;
}
public void setImg2Str64(String img2Str64) {
this.img2Str64 = img2Str64;
}
public String getImg3Str64() {
return img3Str64;
}
public void setImg3Str64(String img3Str64) {
this.img3Str64 = img3Str64;
}
}
\ No newline at end of file
......@@ -20,6 +20,7 @@ public class TbXwYthcjZj implements Serializable {
public String xzpp;//鞋子品牌
public String xzcm;//鞋子尺码
public String sfcj;//是否残疾
public String sfts;//推送状态
public String sbxh;//设备型号
public String gxsj;//更新时间
public String cjsj;//创建时间
......@@ -48,8 +49,6 @@ public class TbXwYthcjZj implements Serializable {
public String cjtpxh;
public String iftscg;
public String getXxzjbh() {
return xxzjbh;
}
......@@ -338,11 +337,11 @@ public class TbXwYthcjZj implements Serializable {
this.cjtpxh = cjtpxh;
}
public String getIftscg() {
return iftscg;
public String getSfts() {
return sfts;
}
public void setIftscg(String iftscg) {
this.iftscg = iftscg;
public void setSfts(String sfts) {
this.sfts = sfts;
}
}
package com.founder.service;
import com.founder.model.AutoXxwcjsm;
import java.util.List;
public interface IXxwcjsmService {
/**
* 保存信息未采集说明
* @param ryxx
* @return
*/
Boolean saveXxwcjsm(AutoXxwcjsm ryxx);
/**update
* 修改信息未采集说明
* @param ryxx
* @return
*/
Boolean updateXxwcjsm(AutoXxwcjsm ryxx);
/**
* 修改信息未采集说明
* @param rybh
* @return
*/
List<AutoXxwcjsm> getXxwcjsm(String rybh);
}
package com.founder.service;
import com.founder.dao.XxwcjsmDao;
import com.founder.model.AutoXxwcjsm;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class XxwcjsmServiceImpl implements IXxwcjsmService {
@Autowired
private XxwcjsmDao xxwcjsmDao;
@Override
public Boolean saveXxwcjsm(AutoXxwcjsm entity) {
Boolean b = false;
try {
b = xxwcjsmDao.insertXxwcjsm(entity);
}catch (Exception e){
System.out.println("插入信息未采集说明失败"+e);
}
return b;
}
@Override
public Boolean updateXxwcjsm(AutoXxwcjsm entity) {
Boolean b = false;
try {
b = xxwcjsmDao.updateXxwcjsm(entity);
}catch (Exception e){
System.out.println("修改信息未采集说明失败"+e);
}
return b;
}
@Override
public List<AutoXxwcjsm> getXxwcjsm(String rybh){
return xxwcjsmDao.getXxwcjsm(rybh);
}
}
......@@ -243,6 +243,7 @@
b.XZPP xzpp,
b.XZCM xzcm,
b.SFCJ sfcj,
b.SFTS sfts,
a.ryzpzs
from (select RYBH,count(rybh) as ryzpzs from TB_XW_YTHCJ_ZJ where RYBH = #{rybh} and (XXSC_PDBZ ='0' OR XXSC_PDBZ IS NULL) and dbms_lob.getlength(ZJSJ)>0 group by rybh) a,TB_XW_YTHCJ_ZJ b
where a.rybh = b.rybh
......@@ -278,6 +279,7 @@
XZPP,
XZCM,
SFCJ,
SFTS,
XXDJRY_XM,
DJSJ,
XXDJDW_GAJGJGDM,
......@@ -307,6 +309,8 @@
<if test="entity.xzcm == null or entity.xzcm == ''">,NULL </if>
<if test="entity.sfcj != null and entity.sfcj != ''">, #{entity.sfcj , jdbcType=VARCHAR }</if>
<if test="entity.sfcj == null or entity.sfcj == ''">,NULL </if>
<if test="entity.sfts != null and entity.sfts != ''">, #{entity.sfts , jdbcType=VARCHAR }</if>
<if test="entity.sfts == null or entity.sfts == ''">,NULL </if>
<if test="entity.lrr != null and entity.lrr != ''">, #{entity.lrr , jdbcType=VARCHAR }</if>
<if test="entity.lrr == null or entity.lrr == ''">,NULL </if>
<if test="entity.lrsj != null">, #{entity.lrsj , jdbcType=TIMESTAMP }</if>
......@@ -373,6 +377,8 @@
<if test="entity.xzcm == null or entity.xzcm == ''">XZCM = NULL, </if>
<if test="entity.sfcj != null and entity.sfcj != ''">SFCJ = #{entity.sfcj , jdbcType=VARCHAR },</if>
<if test="entity.sfcj == null or entity.sfcj == ''">SFCJ = NULL, </if>
<if test="entity.sfts != null and entity.sfts != ''">SFTS = #{entity.sfts , jdbcType=VARCHAR },</if>
<if test="entity.sfts == null or entity.sfts == ''">SFTS = NULL, </if>
<if test="entity.dzwjnr != null and entity.dzwjnr != ''">ZJSJ= #{entity.dzwjnr , jdbcType=VARCHAR },</if>
<if test="entity.dzwjnr == null or entity.dzwjnr == ''">ZJSJ=NULL, </if>
<if test="entity.gxsj != null">gxsj=#{entity.gxsj , jdbcType=TIMESTAMP },</if>
......
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.founder.dao.XxwcjsmDao">
<insert id="insertXxwcjsm" parameterType="com.founder.model.AutoXxwcjsm">
insert into TB_XW_YTHCJ_RYXXWCJSM (
RYBH,
XM,
GMSFHM,
WCJX,
WCJSM,
ZPSJ0,
ZPSJ1,
ZPSJ2,
ZPSJ3,
XXDJDW_GAJGJGDM,
XXDJRY_XM
DJSJ
GXSJ,
XXSC_PDBZ
) values (
#{rybh ,jdbcType=VARCHAR},
#{xm ,jdbcType=VARCHAR},
#{gmsfhm ,jdbcType=VARCHAR},
#{wcjx ,jdbcType=VARCHAR},
#{wcjsm ,jdbcType=VARCHAR},
#{zpsj0 ,jdbcType=VARCHAR},
#{zpsj1 ,jdbcType=VARCHAR},
#{zpsj2 ,jdbcType=VARCHAR},
#{zpsj3 ,jdbcType=VARCHAR},
#{lrr,jdbcType=VARCHAR},
#{lrdwdm,jdbcType=VARCHAR},
sysdate,
sysdate,
'0'
)
</insert>
<update id="updateXxwcjsm" parameterType="com.founder.model.AutoXxwcjsm">
update TB_XW_YTHCJ_RYXXWCJSM SET
<if test="xm != null and xm != ''">XM=#{xm , jdbcType=VARCHAR },</if>
<if test="xm == null or xm == ''">XM=NULL, </if>
<if test="gmsfhm != null and gmsfhm != ''">GMSFHM= #{gmsfhm , jdbcType=VARCHAR },</if>
<if test="gmsfhm == null or gmsfhm == ''">GMSFHM=NULL, </if>
<if test="wcjx != null and wcjx != ''">WCJX= #{wcjx , jdbcType=VARCHAR },</if>
<if test="wcjx == null or wcjx == ''">WCJX=NULL, </if>
<if test="wcjsm != null and wcjsm != ''">WCJSM= #{wcjsm , jdbcType=VARCHAR },</if>
<if test="wcjsm == null or wcjsm == ''">WCJSM=NULL, </if>
<if test="zpsj0 != null and zpsj0 != ''">ZPSJ0= #{zpsj0 , jdbcType=VARCHAR },</if>
<if test="zpsj0 == null or zpsj0 == ''">ZPSJ0=NULL, </if>
<if test="zpsj1 != null and zpsj1 != ''">ZPSJ1= #{zpsj1 , jdbcType=VARCHAR },</if>
<if test="zpsj1 == null or zpsj1 == ''">ZPSJ1=NULL, </if>
<if test="zpsj2 != null and zpsj2 != ''">ZPSJ2= #{zpsj2 , jdbcType=VARCHAR },</if>
<if test="zpsj2 == null or zpsj2 == ''">ZPSJ2=NULL, </if>
<if test="zpsj3 != null and zpsj3 != ''">ZPSJ3= #{zpsj3 , jdbcType=VARCHAR },</if>
<if test="zpsj3 == null or zpsj3 == ''">ZPSJ3=NULL, </if>
XXCZDW_GAJGJGDM = #{gxdwdm,jdbcType=VARCHAR},
XXCZRY_XM = #{gxr,jdbcType=VARCHAR},
GXSJ = sysdate
WHERE RYBH = #{rybh, jdbcType=VARCHAR }
</update>
<select id="getXxwcjsm" parameterType="java.lang.String" resultType="com.founder.model.AutoXxwcjsm">
select
RYBH,
XM,
GMSFHM,
WCJX,
WCJSM,
ZPSJ0,
ZPSJ1,
ZPSJ2,
ZPSJ3,
GXSJ,
XXDJDW_GAJGJGDM AS LRDWDM,
XXDJRY_XM AS LRR,
DJSJ AS LRSJ,
XXSC_PDBZ AS SCBZ from TB_XW_YTHCJ_RYXXWCJSM where (XXSC_PDBZ='0' or XXSC_PDBZ is null) and RYBH = #{rybh, jdbcType=VARCHAR }
</select>
</mapper>
\ No newline at end of file
......@@ -157,6 +157,7 @@ function startRegis(eyeMode) {
window.opener.document.getElementById("imghead21").src="data:image/gif;base64,"+data.left[1].img_data;
$("#hmsjRight").val(data.right[1].img_data);
window.opener.document.getElementById("imghead22").src="data:image/gif;base64,"+data.right[1].img_data;
window.opener.document.getElementById("hmifcj").src="/static/rygl/img/yes.png";
$("#leftEye").attr("src","data:image/gif;base64,"+data.left[1].img_data)
$("#rightEye").attr("src","data:image/gif;base64,"+data.right[1].img_data)
if(!$("#hmsjLeft").val()){
......@@ -826,6 +827,7 @@ function baocun(){
layer.closeAll();
var code = data.code
if(code == "0"){
window.opener.document.getElementById("hmifcj").src="/static/rygl/img/yes.png";
layer.alert(data.msg, {
skin: 'layui-layer-molv' //样式类名
,closeBtn: 0
......@@ -834,10 +836,12 @@ function baocun(){
});
} else {
window.opener.document.getElementById("hmifcj").src="/static/rygl/img/no.png";
layer.alert(data.msg);
}
},
error:function(e){
window.opener.document.getElementById("hmifcj").src="/static/rygl/img/no.png";
//console.log("error="+JSON.stringify(e));
}
});
......
......@@ -154,6 +154,7 @@ var ret=0;
$("#R_EDZZP64").val(ss);
//theForm.IFIDCARDNAM.value = "已采集";//采集二代证后页面显示二代证已采集
//convert(["nNATION","nHOUSEREGCODE","nSEX"]);
$("#edzifcj").attr("src","/static/rygl/img/yes.png");
setCodeTexts();
return(1);
}else{
......@@ -196,6 +197,7 @@ function getWH(){
}else if (strs.length > 2){
$("#zc").val(strs[2]);
}
$("#sgtzifcj").attr("src","/static/rygl/img/yes.png");
}else{
$.messager.alert( '提示',"身高体重读取失败!");
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -46,8 +46,8 @@ function StartupSJCJ() {
// 替换全部'双引号'为'斜杆+双引号'
xmlinfo = xmlinfo.replace(/\"/g, "\\\"");
//alert(xmlinfo);
var rs = newActiveXObject("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9980";
var rs = newActiveXObject_XDH("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"XT_PHONECOLLECT.Document\",\"methodName\":\"StartupSJCJ\",\"xmlinfo\":\""+xmlinfo+"\"}";
$.ajax({
type: "post",
......@@ -152,8 +152,8 @@ function xdhSjcj() {
// 替换全部'双引号'为'斜杆+双引号'
xmlinfo = xmlinfo.replace(/\"/g, "\\\"");
//alert(xmlinfo);
var rs = newActiveXObject("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9980";
var rs = newActiveXObject_XDH("XT_PHONECOLLECT.Document");
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"XT_PHONECOLLECT.Document\",\"methodName\":\"StartupSJCJ\",\"xmlinfo\":\""+xmlinfo+"\"}";
$.ajax({
type: "post",
......@@ -204,4 +204,35 @@ function jnsjcj() {
}catch (e){
alert("手机采集设备连接成功,请到采集设备上进行后续操作2!");
}
}
function newActiveXObject_XDH(ActiveXObjectName){
var rs;
var path = "http://127.0.0.1:9981";
var param = "{\"autoSvrID\":\"" + ActiveXObjectName + "\",\"methodName\":\"newActiveXObject\"}";
$.ajax({
type: "post",
url: path,//调用该路径的控件
async: false,
data: param,
contentType: "application/x-www-form-urlencoded",
dataType: "json",//解决跨域请求
crossDomain: true,
success: function(data) {
var rstemp = eval(data);
var status = rstemp.apiStatus;
if(status == "success"){
rs = status;
}else{
//alert("调用控件错误,错误状态:"+status);
rs = "";
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
//alert("头 = " + XMLHttpRequest.getResponseHeader('Access-Control-Allow-Origin'));
alert("请求创建调用控件失败,错误状态=="+XMLHttpRequest.status);
}
});
return rs;
}
\ No newline at end of file
......@@ -44,7 +44,7 @@
<!--标题-->
<div class="login-header" style="margin-top:50px;">
<h2><img /><img id="title_img" src="/static/xtba/login/images/index_4300.png" style="margin-left:10px;"/><img /></h2>
<h2><img /><img id="title_img" src="/static/xtba/login/images/index_dongguan.png" style="margin-left:10px;"/><img /></h2>
</div>
<!--content-->
<div class="wrap-content">
......@@ -278,12 +278,15 @@
$(".link-dropdown").slideUp(200);
});
var unit = $("#unitcode").val();
if(unit.substr(0,2)=="43"){
$("#title_img").attr("src","/static/xtba/login/images/index_"+unit.substr(0,4)+".png");
}else{
$("#title_img").attr("src","/static/xtba/login/images/index-login.png");
$("#title_img").attr("style","margin-left:10px;");
}
//if(unit.substr(0,2)=="44"){
// $("#title_img").attr("src","/static/xtba/login/images/index_"+unit.substr(0,4)+".png");
//}else if(unit.substr(0,2)=="43"){
// $("#title_img").attr("src","/static/xtba/login/images/index_dongguan.png");
//}else{
// $("#title_img").attr("src","/static/xtba/login/images/index-login.png");
// $("#title_img").attr("style","margin-left:10px;");
//}
//点击警号登录弹出登录框
$("#btn-alarm").click(function(){
$("#dlc").show();
......
......@@ -82,7 +82,17 @@
}},
{title:"姓名",field:"xm",align:'left',width:120},
{title:"性别",field:"xbdm",align:'left',width:80},
{title:"证件号码",field:"gmsfhm",align:'left',width:200},
{title:"证件号码",field:"gmsfhm",align:'left',width:200,formatter:function(val,row,index){
var gmsfhm=row.gmsfhm;
var zjhm=row.zjhm;
var rstStr;
if(gmsfhm==null||gmsfhm==""){
rstStr = zjhm;
}else{
rstStr = gmsfhm;
}
return rstStr;
}},
{title:"指纹编号",field:"szzwbh",align:'left',width:220},
{title:"平面指纹",field:"pmzw",align:'center',color:'gree',width:90,formatter:function(val,row,index){
var zwfkxx=row.zwfkxx;
......
......@@ -82,7 +82,17 @@
}},
{title:"姓名",field:"xm",align:'left',width:120},
{title:"性别",field:"xbdm",align:'left',width:80},
{title:"证件号码",field:"gmsfhm",align:'left',width:150},
{title:"证件号码",field:"gmsfhm",align:'left',width:150,formatter:function(val,row,index){
var gmsfhm=row.gmsfhm;
var zjhm=row.zjhm;
var rstStr;
if(gmsfhm==null||gmsfhm==""){
rstStr = zjhm;
}else{
rstStr = gmsfhm;
}
return rstStr;
}},
{title:"是否有手机",field:"szzwbh",align:'left',width:60,formatter:function(val,row,index){
var sjbs=row.sjbs;
var rstStr="";
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -342,6 +342,7 @@
}else{
rstStr = gmsfhm;
}
return rstStr;
}},
{title:"指纹编号",field:"szzwbh",align:'left',width:220},
{title:"平面指纹",field:"pmzw",align:'center',color:'gree',width:90,formatter:function(val,row,index){
......
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" style="background: #fff;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<!--- 代码框-->
<link rel="stylesheet" href="/static/easyui-window/css/easyui.css">
<link rel="stylesheet" href="/static/rygl/css/details.css">
<script type="text/javascript" src="/static/rygl/js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="/static/easyui-window/js/jquery.easyui.min.js"></script>
<script type="text/javascript" src="/static/xtba/zlcc/easyui-window/js/function-zdy.js"></script>
<script src="/static/rygl/js/webuploader.min.js"></script>
<script src="/static/rygl/js/diyUpload.js"></script>
<body style="overflow: auto;background: #fff;">
<form action="" name="frminput" method="post" enctype="multipart/form-data">
<input type="hidden" id="wfcjyyStr" name="wfcjyyStr" value="测试测试"/>
<input type="hidden" id="wfcjyyStr_bak" name="wfcjyyStr_bak" th:value="${xxwcjsm.wcjsm}"/>
<input type="hidden" id="wcjxStr" name="wcjxStr" value="01-03-05"/>
<input type="hidden" id="type" name="type" th:value="${type}"/>
<input type="hidden" id="imgflag0" name="imgflag0" value="0"/>
<input type="hidden" id="imgflag1" name="imgflag1" value="0"/>
<input type="hidden" id="imgflag2" name="imgflag2" value="0"/>
<input type="hidden" id="imgflag3" name="imgflag3" value="0"/>
<input type="hidden" name="img0Str64" id="img0Str64" th:value="${xxwcjsm.img0Str64}"/>
<input type="hidden" name="img1Str64" id="img1Str64" th:value="${xxwcjsm.img1Str64}"/>
<input type="hidden" name="img2Str64" id="img2Str64" th:value="${xxwcjsm.img2Str64}"/>
<input type="hidden" name="img3Str64" id="img3Str64" th:value="${xxwcjsm.img3Str64}"/>
<!--表格设置面板-->
<div id="w" class="dialogclass">
<div class="inputARea">
<p class="title">未采集项:</p>
<p class="value">
<input type="checkbox" name="wcjx" id="sfz" value="01"><label for="sfz">身份证</label>
<input type="checkbox" name="wcjx" id="zw" value="02"><label for="zw">指纹</label>
<input type="checkbox" name="wcjx" id="rx" value="03"><label for="rx">人像</label>
<input type="checkbox" name="wcjx" id="sw" value="04"><label for="sw">声纹</label>
<input type="checkbox" name="wcjx" id="zj" value="05"><label for="zj">足迹</label>
<input type="checkbox" name="wcjx" id="hm" value="06"><label for="hm">虹膜</label>
</p>
</div>
<div class="inputARea">
<p class="title">无法采集原因:</p><p class="value"><textarea id="wfcjyy" name="wfcjyy" rows="4" style="width:98%;resize:none;"></textarea></p>
</div>
<div style="padding: 10px;">
<ul class="upload-ul clearfix">
<li class="upload-pick">
<div class="webuploader-container clearfix" id="goodsUpload">+</div>
</li>
</ul>
</div>
<div><button id="capture" onclick="tosave();" style="cursor: pointer;background-color: orange;width: 81px;height: 30px; margin-top: 0px;margin-left: 362px;">信息保存</button></div>
</div>
</form>
<script>
$(function(){
//上传图片
var $tgaUpload = $('#goodsUpload').diyUpload({
url:'/uploadFilePath',
success:function( data ) { },
error:function( err ) { },
buttonText : '',
accept: {
title: "Images",
extensions: 'gif,jpg,jpeg,bmp,png'
},
thumb:{
width:120,
height:90,
quality:100,
allowMagnify:true,
crop:true,
type:"image/jpeg"
}
});
});
function tosave(){
for(var i=0;i<4;i++){
alert("图片"+i+"标识:"+$('#imgflag'+i).val()+" 图片内容:"+$('#img'+i+'Str64').val());
}
}
</script>
</body>
</html>
\ No newline at end of file
......@@ -41,7 +41,13 @@
<input type="hidden" id="jgssxdmStr" th:value="${ryxx.jgssxdm}"/>
<input type="hidden" id="xldmStr" th:value="${ryxx.xldm}"/>
<input type="hidden" id="hjdzXzqhdmStr" th:value="${ryxx.hjdzXzqhdm}"/>
<input type="hidden" id="hjdzDzmc" th:value="${ryxx.hjdzDzmc}"/>
<input type="hidden" id="xzzXzqhdmStr" th:value="${ryxx.xzzXzqhdm}"/>
<input type="hidden" id="xzzDzmc" th:value="${ryxx.xzzDzmc}"/>
<input type="hidden" id="ajlbdmStr" th:value="${ryxx.ajlbdm}"/>
<input type="hidden" id="rysxStr" th:value="${ryxx.rysx}"/>
<input type="hidden" id="zwcjdwdmStr" th:value="${ryxx.zwcjdwdm}"/>
<input type="hidden" id="zwcjr" th:value="${ryxx.zwcjr}"/>
<td class="td_r" style="width:10%;">人员编号</td>
<td class="td_bg" style="width:20%;" th:text="${ryxx.rybh}"></td>
<td class="td_r" style="width:10%;">姓名</td>
......@@ -70,13 +76,13 @@
<td class="td_r">常用证件类型</td>
<td id="cyzjdm" class="td_bg"></td>
<td class="td_r">证件号码</td>
<td class="td_bg" th:text="${ryxx.zjhm}">
<a href="javascript:void(0)" class="btn_hg">用采合一</a>
<td class="td_bg">
<span th:text="${ryxx.zjhm}"></span><span id="ryckcnt" class="bot" >0</span>
</td>
</tr>
<tr>
<td class="td_r">国籍</td>
<td id="gjdm" class="td_bg"></td>
<td class="td_r">籍贯</td>
<td id="jgssxdm" class="td_bg"></td>
<td class="td_r">民族</td>
<td id="mzdm" class="td_bg"></td>
</tr>
......@@ -87,20 +93,30 @@
<td class="td_bg" th:text="${ryxx.tzsx}"></td>
</tr>
<tr>
<td class="td_r">籍贯</td>
<td id="jgssxdm" class="td_bg"></td>
<td class="td_r">文化程度</td>
<td id="xldm" class="td_bg"></td>
<td class="td_r">户籍地详址</td>
<td id="hjdzXzqhdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">现住址详址</td>
<td id="xzzXzqhdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">户籍地址名称</td>
<td id="hjdzXzqhdm" class="td_bg"></td>
<td class="td_r">现住址名称</td>
<td id="xzzXzqhdm" class="td_bg"></td>
<td class="td_r">人员类型</td>
<td id="rysx" class="td_bg"></td>
<td class="td_r">涉案类别</td>
<td id="ajlbdm" class="td_bg" colspan="3"></td>
</tr>
<tr>
<td class="td_r">简要情况</td>
<td class="td_bg" colspan="5" th:text="${ryxx.jl}"></td>
<td class="td_r">犯罪描述</td>
<td class="td_bg" colspan="5" th:text="${ryxx.wffzjlms}"></td>
</tr>
<tr>
<td class="td_r">采集单位</td>
<td id="zwcjdwdm" class="td_bg"></td>
<td class="td_r">采集人</td>
<td id="zwcjrXm" class="td_bg" th:text="${ryxx.zwcjrXm}"></td>
<td class="td_r" style="width:10%;">采集时间</td>
<td id="zwcjsj" class="td_bg" th:value="${ryxx.zwcjsjStr}" style="width:20%;"></td>
</tr>
</table>
</div>
......@@ -312,20 +328,20 @@
</div>
<!--人员足迹信息-->
<div class="tab1_div ryzjxx_div">
<dl class="ryzj-photo">
<dd>左足</dd>
<dt>
<img layer-pid="l-hand" layer-src="static/img/foot_left.jpg" id="zzzp" alt=" 左足" src="static/img/foot_left.jpg" onclick="showImg('#ryzj_photos')" />
</dt>
</dl>
<dl class="ryzj-photo">
<dd>右足</dd>
<dt>
<img src="static/img/foot_right.jpg" layer-pid="l-hand" id="yzzp" layer-src="static/img/foot_right.jpg" alt=" 右足" onclick="showImg('#ryzj_photos')" />
</dt>
</dl>
<!--
<dl class="ryzj-photo">
<dd>左足</dd>
<dt>
<img layer-pid="l-hand" layer-src="static/img/foot_left.jpg" id="zzzp" alt=" 左足" src="static/img/foot_left.jpg" onclick="showImg('#ryzj_photos')" />
</dt>
</dl>
<dl class="ryzj-photo">
<dd>右足</dd>
<dt>
<img src="static/img/foot_right.jpg" layer-pid="l-hand" id="yzzp" layer-src="static/img/foot_right.jpg" alt=" 右足" onclick="showImg('#ryzj_photos')" />
</dt>
</dl>
-->
<p class="checklist">
<button type="button" onclick="btnCheck(this,'.ryzjxx_div')" class="act">
......@@ -419,7 +435,7 @@
</dl>
</div>
</div>
-->
</div>
<!--手机信息-->
<div class="tab1_div sjxx_div">
......@@ -720,12 +736,27 @@
$("#xbdm").html(codeFormatters($("#xbdmStr").val(),"CODE_XB"));
$("#cyzjdm").html(codeFormatters($("#cyzjdmStr").val(),"CODE_ZJ"));
$("#gjdm").html(codeFormatters($("#gjdmStr").val(),"CODE_GJ"));
//$("#gjdm").html(codeFormatters($("#gjdmStr").val(),"CODE_GJ"));
$("#mzdm").html(codeFormatters($("#mzdmStr").val(),"CODE_MZ"));
$("#xldm").html(codeFormatters($("#xldmStr").val(),"CODE_WHCD"));
$("#jgssxdm").html(codeFormatters($("#jgssxdmStr").val(),"CODE_XZQH"));
$("#hjdzXzqhdm").html(codeFormatters($("#hjdzXzqhdmStr").val(),"CODE_XZQH"));
$("#xzzXzqhdm").html(codeFormatters($("#xzzXzqhdmStr").val(),"CODE_XZQH"));
$("#hjdzXzqhdm").html(codeFormatters($("#hjdzXzqhdmStr").val(),"CODE_XZQH")+$("#hjdzDzmc").val());
$("#xzzXzqhdm").html(codeFormatters($("#xzzXzqhdmStr").val(),"CODE_XZQH")+$("#xzzDzmc").val());
$("#ajlbdm").html(codeFormatters($("#ajlbdmStr").val(),"CODE_AJLB"));
if($("#rysxStr").val()=="01"){
$("#rysx").html("警综犯罪嫌疑人");
}else if($("#rysxStr").val()=="02"){
$("#rysx").html("可疑人员");
}else if($("#rysxStr").val()=="03"){
$("#rysx").html("盘问人员");
}else if($("#rysxStr").val()=="04"){
$("#rysx").html("其他人员");
}
$("#zwcjdwdm").html(codeFormatters($("#zwcjdwdmStr").val(),"CODE_UNIT"));
if($("#zwcjrXm").val()==null||$("#zwcjrXm").val()==""){
$("#zwcjrXm").html($("#zwcjr").val());
}
getPmImage($("#pmzwbh").val(),$("#asjxgrybh").val(),$("#xyrzjhm").val());//平面
getGdImage($("#gdzwbh").val());//滚动
getZmzwImage($("#gdzwbh").val());//滚动
......@@ -911,6 +942,7 @@
debugger;
if(data!=null&&data!=""){
for(var key in data){
/*
if(key=="11"){
var gdxdhw_z = data[key];
if (gdxdhw_z != null && gdxdhw_z != "") {
......@@ -931,8 +963,8 @@
}
}
}
*/
/*
if(key=="11"){
var gdxdhw_z = data[key];
if (gdxdhw_z != null && gdxdhw_z != "") {
......@@ -1075,7 +1107,7 @@
}
}
*/
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment