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.client.afis;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
@WebService(name = "AMSISPortType", targetNamespace = "http://afis.service.amsis.highland.com")
@SOAPBinding(use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public interface AMSISPortType {
@WebMethod(operationName = "setPFPORGPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPFPORGPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPFPMNT", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPFPMNT(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "checkHPSeqno", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String checkHPSeqno(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2);
@WebMethod(operationName = "setLATMNT", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setLATMNT(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "getLogicDB", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String getLogicDB(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2);
@WebMethod(operationName = "setRFPMNT", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setRFPMNT(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setEditInterface", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setEditInterface(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setRFPCPRPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setRFPCPRPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setCaseInfo", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setCaseInfo(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2);
@WebMethod(operationName = "setRFPORGPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setRFPORGPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "getLatHPSeqno", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String getLatHPSeqno(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1);
@WebMethod(operationName = "setLATORGPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setLATORGPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPLPCPRPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPLPCPRPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPLPORGPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPLPORGPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPersonInfo", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPersonInfo(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2);
@WebMethod(operationName = "getBKHitInfo", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String getBKHitInfo(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2);
@WebMethod(operationName = "synInfo", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String synInfo(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1,
@WebParam(name = "in2", targetNamespace = "http://afis.service.amsis.highland.com")
String in2,
@WebParam(name = "in3", targetNamespace = "http://afis.service.amsis.highland.com")
String in3);
@WebMethod(operationName = "setLATHPCPRPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setLATHPCPRPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "updateXKTabStaus", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public int updateXKTabStaus(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0,
@WebParam(name = "in1", targetNamespace = "http://afis.service.amsis.highland.com")
String in1);
@WebMethod(operationName = "setPersonScan", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPersonScan(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setLATSCAN", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setLATSCAN(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPsnOrCaseQueue", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPsnOrCaseQueue(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPFPCPRPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPFPCPRPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "save_PersonPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String save_PersonPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setPLPMNT", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setPLPMNT(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
@WebMethod(operationName = "setLATHPORGPic", action = "")
@WebResult(name = "out", targetNamespace = "http://afis.service.amsis.highland.com")
public String setLATHPORGPic(
@WebParam(name = "in0", targetNamespace = "http://afis.service.amsis.highland.com")
String in0);
}
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.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the com.highland.amsis.service.afis package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.highland.amsis.service.afis
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link GetLogicDB }
*
*/
public GetLogicDB createGetLogicDB() {
return new GetLogicDB();
}
/**
* Create an instance of {@link SetPFPCPRPic }
*
*/
public SetPFPCPRPic createSetPFPCPRPic() {
return new SetPFPCPRPic();
}
/**
* Create an instance of {@link SetEditInterface }
*
*/
public SetEditInterface createSetEditInterface() {
return new SetEditInterface();
}
/**
* Create an instance of {@link SetRFPORGPic }
*
*/
public SetRFPORGPic createSetRFPORGPic() {
return new SetRFPORGPic();
}
/**
* Create an instance of {@link SetPersonScan }
*
*/
public SetPersonScan createSetPersonScan() {
return new SetPersonScan();
}
/**
* Create an instance of {@link SetRFPMNTResponse }
*
*/
public SetRFPMNTResponse createSetRFPMNTResponse() {
return new SetRFPMNTResponse();
}
/**
* Create an instance of {@link SetLATMNT }
*
*/
public SetLATMNT createSetLATMNT() {
return new SetLATMNT();
}
/**
* Create an instance of {@link SetPLPORGPic }
*
*/
public SetPLPORGPic createSetPLPORGPic() {
return new SetPLPORGPic();
}
/**
* Create an instance of {@link SetPLPCPRPic }
*
*/
public SetPLPCPRPic createSetPLPCPRPic() {
return new SetPLPCPRPic();
}
/**
* Create an instance of {@link SetLATMNTResponse }
*
*/
public SetLATMNTResponse createSetLATMNTResponse() {
return new SetLATMNTResponse();
}
/**
* Create an instance of {@link SetLATSCAN }
*
*/
public SetLATSCAN createSetLATSCAN() {
return new SetLATSCAN();
}
/**
* Create an instance of {@link SetRFPCPRPicResponse }
*
*/
public SetRFPCPRPicResponse createSetRFPCPRPicResponse() {
return new SetRFPCPRPicResponse();
}
/**
* Create an instance of {@link GetLatHPSeqno }
*
*/
public GetLatHPSeqno createGetLatHPSeqno() {
return new GetLatHPSeqno();
}
/**
* Create an instance of {@link CheckHPSeqnoResponse }
*
*/
public CheckHPSeqnoResponse createCheckHPSeqnoResponse() {
return new CheckHPSeqnoResponse();
}
/**
* Create an instance of {@link SetPsnOrCaseQueueResponse }
*
*/
public SetPsnOrCaseQueueResponse createSetPsnOrCaseQueueResponse() {
return new SetPsnOrCaseQueueResponse();
}
/**
* Create an instance of {@link GetLogicDBResponse }
*
*/
public GetLogicDBResponse createGetLogicDBResponse() {
return new GetLogicDBResponse();
}
/**
* Create an instance of {@link SetPFPORGPic }
*
*/
public SetPFPORGPic createSetPFPORGPic() {
return new SetPFPORGPic();
}
/**
* Create an instance of {@link SetPLPORGPicResponse }
*
*/
public SetPLPORGPicResponse createSetPLPORGPicResponse() {
return new SetPLPORGPicResponse();
}
/**
* Create an instance of {@link GetLatHPSeqnoResponse }
*
*/
public GetLatHPSeqnoResponse createGetLatHPSeqnoResponse() {
return new GetLatHPSeqnoResponse();
}
/**
* Create an instance of {@link GetBKHitInfo }
*
*/
public GetBKHitInfo createGetBKHitInfo() {
return new GetBKHitInfo();
}
/**
* Create an instance of {@link SetPersonInfo }
*
*/
public SetPersonInfo createSetPersonInfo() {
return new SetPersonInfo();
}
/**
* Create an instance of {@link UpdateXKTabStausResponse }
*
*/
public UpdateXKTabStausResponse createUpdateXKTabStausResponse() {
return new UpdateXKTabStausResponse();
}
/**
* Create an instance of {@link SetPLPCPRPicResponse }
*
*/
public SetPLPCPRPicResponse createSetPLPCPRPicResponse() {
return new SetPLPCPRPicResponse();
}
/**
* Create an instance of {@link SetLATHPORGPicResponse }
*
*/
public SetLATHPORGPicResponse createSetLATHPORGPicResponse() {
return new SetLATHPORGPicResponse();
}
/**
* Create an instance of {@link CheckHPSeqno }
*
*/
public CheckHPSeqno createCheckHPSeqno() {
return new CheckHPSeqno();
}
/**
* Create an instance of {@link UpdateXKTabStaus }
*
*/
public UpdateXKTabStaus createUpdateXKTabStaus() {
return new UpdateXKTabStaus();
}
/**
* Create an instance of {@link SetRFPORGPicResponse }
*
*/
public SetRFPORGPicResponse createSetRFPORGPicResponse() {
return new SetRFPORGPicResponse();
}
/**
* Create an instance of {@link SetPFPMNT }
*
*/
public SetPFPMNT createSetPFPMNT() {
return new SetPFPMNT();
}
/**
* Create an instance of {@link SetPLPMNTResponse }
*
*/
public SetPLPMNTResponse createSetPLPMNTResponse() {
return new SetPLPMNTResponse();
}
/**
* Create an instance of {@link SynInfo }
*
*/
public SynInfo createSynInfo() {
return new SynInfo();
}
/**
* Create an instance of {@link SetPFPORGPicResponse }
*
*/
public SetPFPORGPicResponse createSetPFPORGPicResponse() {
return new SetPFPORGPicResponse();
}
/**
* Create an instance of {@link SavePersonPic }
*
*/
public SavePersonPic createSavePersonPic() {
return new SavePersonPic();
}
/**
* Create an instance of {@link SetLATORGPicResponse }
*
*/
public SetLATORGPicResponse createSetLATORGPicResponse() {
return new SetLATORGPicResponse();
}
/**
* Create an instance of {@link SetLATHPORGPic }
*
*/
public SetLATHPORGPic createSetLATHPORGPic() {
return new SetLATHPORGPic();
}
/**
* Create an instance of {@link SetPLPMNT }
*
*/
public SetPLPMNT createSetPLPMNT() {
return new SetPLPMNT();
}
/**
* Create an instance of {@link SynInfoResponse }
*
*/
public SynInfoResponse createSynInfoResponse() {
return new SynInfoResponse();
}
/**
* Create an instance of {@link SetLATHPCPRPic }
*
*/
public SetLATHPCPRPic createSetLATHPCPRPic() {
return new SetLATHPCPRPic();
}
/**
* Create an instance of {@link SetPsnOrCaseQueue }
*
*/
public SetPsnOrCaseQueue createSetPsnOrCaseQueue() {
return new SetPsnOrCaseQueue();
}
/**
* Create an instance of {@link SetPFPCPRPicResponse }
*
*/
public SetPFPCPRPicResponse createSetPFPCPRPicResponse() {
return new SetPFPCPRPicResponse();
}
/**
* Create an instance of {@link SetPersonInfoResponse }
*
*/
public SetPersonInfoResponse createSetPersonInfoResponse() {
return new SetPersonInfoResponse();
}
/**
* Create an instance of {@link GetBKHitInfoResponse }
*
*/
public GetBKHitInfoResponse createGetBKHitInfoResponse() {
return new GetBKHitInfoResponse();
}
/**
* Create an instance of {@link SetPersonScanResponse }
*
*/
public SetPersonScanResponse createSetPersonScanResponse() {
return new SetPersonScanResponse();
}
/**
* Create an instance of {@link SetEditInterfaceResponse }
*
*/
public SetEditInterfaceResponse createSetEditInterfaceResponse() {
return new SetEditInterfaceResponse();
}
/**
* Create an instance of {@link SetLATSCANResponse }
*
*/
public SetLATSCANResponse createSetLATSCANResponse() {
return new SetLATSCANResponse();
}
/**
* Create an instance of {@link SetRFPMNT }
*
*/
public SetRFPMNT createSetRFPMNT() {
return new SetRFPMNT();
}
/**
* Create an instance of {@link SetLATORGPic }
*
*/
public SetLATORGPic createSetLATORGPic() {
return new SetLATORGPic();
}
/**
* Create an instance of {@link SetLATHPCPRPicResponse }
*
*/
public SetLATHPCPRPicResponse createSetLATHPCPRPicResponse() {
return new SetLATHPCPRPicResponse();
}
/**
* Create an instance of {@link SetPFPMNTResponse }
*
*/
public SetPFPMNTResponse createSetPFPMNTResponse() {
return new SetPFPMNTResponse();
}
/**
* Create an instance of {@link SetCaseInfoResponse }
*
*/
public SetCaseInfoResponse createSetCaseInfoResponse() {
return new SetCaseInfoResponse();
}
/**
* Create an instance of {@link SavePersonPicResponse }
*
*/
public SavePersonPicResponse createSavePersonPicResponse() {
return new SavePersonPicResponse();
}
/**
* Create an instance of {@link SetRFPCPRPic }
*
*/
public SetRFPCPRPic createSetRFPCPRPic() {
return new SetRFPCPRPic();
}
/**
* Create an instance of {@link SetCaseInfo }
*
*/
public SetCaseInfo createSetCaseInfo() {
return new SetCaseInfo();
}
}
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"
......
......@@ -3,6 +3,8 @@ package com.founder.controller;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.founder.amsis.client.afis.AMSISClient;
import com.founder.amsis.client.afis.AMSISPortType;
import com.founder.login.service.LoginService;
import com.founder.model.*;
import com.founder.model.amsis.PCTInfo;
......@@ -37,9 +39,11 @@ import org.springframework.web.multipart.MultipartFile;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
import javax.imageio.ImageIO;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.awt.image.BufferedImage;
import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
......@@ -1338,6 +1342,11 @@ public class TbXwRycjController {
FileUtils.saveXmlFile(getZjpicXml(xyrC),xyrC.getRybh(),zplj,"ZJXX-"+xyrC.getRybh()+".xml",user);
}
FileUtils.saveXmlFile(getPsnpicXml(xyrC),xyrC.getRybh(),zplj,"RXXX-"+xyrC.getRybh()+".xml",user);
if(xyrC.getSzzwbh()!=null&&!xyrC.getSzzwbh().equals("")){
//调用AMSISService服务器程序
doRyxxToAMSIS(xyrC);
}
model.addAttribute("username",user.getUsername());
model.addAttribute("unitcode",user.getUnitcode());
model.addAttribute("ryxx",xyrC);
......@@ -3663,4 +3672,254 @@ public class TbXwRycjController {
}
return returnStr;
}
// 向AMSIS系统推送人员信息 add by jiaorong 20150106
public String doRyxxToAMSIS(AutoTbStRy newryxx) {
// 获取AMSISService的参数信息,调用AMSISService的接口程序,将人员和照片信息传递到AMSIS系统
//AutoTbStRy newryxx = rycjService.getRyxxByRybh(rybh);
Param param = paramService.getParamById("0011");
Param paramUrl = paramService.getParamById("0012");
if (param.getParamvalue().equals("1")) {
try {
AMSISClient client = new AMSISClient(paramUrl.getParamvalue());
AMSISPortType service = client.getAMSISHttpPort();
// String psnXML = this.getAMsisPsnXml();
String barcode = newryxx.getSzzwbh();
if(barcode == null || barcode.equals("")) {
barcode = newryxx.getRybh().substring(1,newryxx.getRybh().length());
}
String model = "";
//拼写xml
String psnXML = this.getAMsisPsnXml(newryxx);
System.out.println("向指纹系统推送人员基本信息:"+psnXML);
//String returnstr = service.setPersonInfo(psnXML, barcode, model);
//System.out.println("向指纹系统推送信息,返回:"+returnstr);
if(!(newryxx.getZmzpxxbh()==null||newryxx.getCmzpxxbh()==null||newryxx.getYcmzpxxbh()==null)){
String picXML = this.getPsnpicAmsisXml(newryxx);
String picreturnstr = service.save_PersonPic(picXML);
System.out.println("向指纹系统推送人像信息,返回:"+picreturnstr);
/*
* 当检查质量检查结果不合格时,切人像不合格,指纹数据重新进入质量检查队列
* */
System.out.println("该人员质量检查结果为:"+newryxx.getJcjg()+" 人像结果为:"+newryxx.getRRx());
if(newryxx.getJcjg()!=null&&newryxx.getJcjg().equals("1")){
String rRx = newryxx.getRRx();
if(rRx!=null&&!rRx.equals("1-1-1")){
boolean bool = afisQualityService.chexiao(newryxx.getSzzwbh());
}
}
}
// 同步完成,执行更新数据库操作--同步时间,同步标记
} catch (Exception exception) {
exception.printStackTrace();
// return -1;
}
}
return "1";
}
//拼接AMSISService人员基本信息的XML文件 add by jiaorong 20150205
public String getAMsisPsnXml(AutoTbStRy newryxx) {
//根据人员编号,获取人员信息
//AutoTbStRy newryxx = rycjService.getRyxxByRybh(rybh);
String jyaq = newryxx.getWffzjlms();
if(jyaq!=null&&!jyaq.equals("")&&jyaq.length()>256){
jyaq = jyaq.substring(0,256);
}
if(newryxx.getSzzwbh() == null || newryxx.getSzzwbh().equals("")){
newryxx.setSzzwbh(newryxx.getRybh().substring(1,newryxx.getRybh().length())) ;
}
StringBuffer xml = new StringBuffer();
xml.append("<?xml version=\"1.0\" encoding=\"GBK\"?>");
xml.append("<PERSON>")
.append("<DBID>").append(this.getBASE64("5")).append("</DBID>") //分库号 R_LOGICDBID 分库ID,默认为5
.append("<BARCODE>").append(this.getBASE64(newryxx.getSzzwbh())).append("</BARCODE>") //条码号 ---指纹编号 现改为人员编号
//.append("<PID>").append(Helper.getBASE64("")).append("</PID>") //人员编号 采用AMSIS系统自动生成的数据
.append("<SERIESBARCODE>").append(this.getBASE64("")).append("</SERIESBARCODE>") //串并人员组号
.append("<IFIDCARD>").append(this.getBASE64("F")).append("</IFIDCARD>") //是否采集二代证
.append("<RFPBARCODE>").append(this.getBASE64(newryxx.getRfp())).append("</RFPBARCODE>") //滚动指纹编号--- 滚动指纹条码号
.append("<PFPBARCODE>").append(this.getBASE64(newryxx.getPfp())).append("</PFPBARCODE>") //平面指纹编号
.append("<PLPBARCODE>").append(this.getBASE64(newryxx.getPlp())).append("</PLPBARCODE>") //掌纹编号 ---- 掌纹条码号
.append("<FCPBARCODE>").append(this.getBASE64(newryxx.getZmzpxxbh()==null?"":newryxx.getZmzpxxbh().substring(0,24))).append("</FCPBARCODE>") //人像编号 两边长度不一致30 24
.append("<FTPBARCODE>").append(this.getBASE64("")).append("</FTPBARCODE>") //足印编号 ---足印反馈信息
.append("<DNABARCODE>").append(this.getBASE64(newryxx.getDnabh())).append("</DNABARCODE>") //DNA编号
.append("<NAME>").append(this.getBASE64(newryxx.getXm())).append("</NAME>") //姓名
.append("<ALIASNAME>").append(this.getBASE64(newryxx.getBmch())).append("</ALIASNAME>") //别名
.append("<SEX>").append(this.getBASE64(newryxx.getXbdm())).append("</SEX>") //性别
.append("<BIRTHDATE>").append(this.getBASE64(new SimpleDateFormat("yyyy-MM-dd").format(newryxx.getCsrqQsrq()))).append("</BIRTHDATE>") //出生日期 ?????
.append("<IDNUMBERTYPE>").append(this.getBASE64(newryxx.getCyzjdm())).append("</IDNUMBERTYPE>") //证件类型 无
.append("<IDNUMBERCODE>").append(this.getBASE64(newryxx.getZjhm())).append("</IDNUMBERCODE>") //证件编号 ----身份证号
.append("<IDNUMBER>").append(this.getBASE64(newryxx.getZjhm())).append("</IDNUMBER>") //身份证号
.append("<BIRTHADDCODE>").append(this.getBASE64(newryxx.getJgssxdm())).append("</BIRTHADDCODE>") //籍贯区划代码
.append("<HOUSEREGCODE>").append(this.getBASE64(newryxx.getHjdzXzqhdm())).append("</HOUSEREGCODE>") //户籍代码
.append("<HOUSEREG>").append(this.getBASE64(newryxx.getHjdzDzmc())).append("</HOUSEREG>") //户籍地详址
.append("<ADDRESSCODE>").append(this.getBASE64(newryxx.getXzzXzqhdm())).append("</ADDRESSCODE>") //现住地区划
.append("<ADDRESS>").append(this.getBASE64(newryxx.getXzzDzmc())).append("</ADDRESS>") //现住详址
.append("<PSNTYPE>").append(this.getBASE64(newryxx.getBzw())).append("</PSNTYPE>") //人员类型
.append("<NAME_PY>").append(this.getBASE64("")).append("</NAME_PY>") //姓名拼音
.append("<ALIASNAME_PY>").append(this.getBASE64("")).append("</ALIASNAME_PY>") //别名拼音
.append("<USEREDNAME>").append(this.getBASE64("")).append("</USEREDNAME>") //曾用名
.append("<VOICE>").append(this.getBASE64("")).append("</VOICE>") //口音
.append("<IDENTITY>").append(this.getBASE64(newryxx.getSarysfdm())).append("</IDENTITY>") //身份
.append("<POLITICSSTATUS>").append(this.getBASE64(newryxx.getZzmmdm())).append("</POLITICSSTATUS>") //政治面貌
.append("<DEUCATION>").append(this.getBASE64(newryxx.getXldm())).append("</DEUCATION>") //文化程度
.append("<PROFESSION>").append(this.getBASE64(newryxx.getZylbdm())).append("</PROFESSION>") //职业
.append("<PHONE1>").append(this.getBASE64(newryxx.getLxdm())).append("</PHONE1>") //电话1
.append("<PHONE2>").append(this.getBASE64("")).append("</PHONE2>") //电话2 无 ??
.append("<COMMUNITY>").append(this.getBASE64("")).append("</COMMUNITY>") //居住地社区 转化为社区名称
.append("<WORKUNIT>").append(this.getBASE64(newryxx.getFwcs())).append("</WORKUNIT>") //工作单位R_GZDW
.append("<BLOODTYPE>").append(this.getBASE64(newryxx.getXxdm())).append("</BLOODTYPE>") //血型
.append("<HEIGHT>").append(this.getBASE64(newryxx.getSgsx().toString())).append("</HEIGHT>") //身高
.append("<HABITUS>").append(this.getBASE64("")).append("</HABITUS>") //体型
.append("<WEIGHT>").append(this.getBASE64(newryxx.getTzsx().toString())).append("</WEIGHT>") //体重
.append("<FEATURE>").append(this.getBASE64("")).append("</FEATURE>") //脸型
.append("<FOOTLENGTH>").append(this.getBASE64("")).append("</FOOTLENGTH>") //足长
.append("<SPECIALTY>").append(this.getBASE64(newryxx.getTszcdm())).append("</SPECIALTY>") //专长
.append("<SIGNALEMENT1>").append(this.getBASE64("")).append("</SIGNALEMENT1>") //特殊特征1
.append("<SIGNALEMENT2>").append(this.getBASE64("")).append("</SIGNALEMENT2>") //特殊特征2
.append("<SIGNALEMENT3>").append(this.getBASE64("")).append("</SIGNALEMENT3>") //特殊特征3
.append("<CASETYPE1>").append(this.getBASE64(newryxx.getAjlbdm())).append("</CASETYPE1>") //案件类别1
//.append("<CASETYPE2>").append(this.getBASE64(this.R_RYLX)).append("</CASETYPE2>") //案件类别2 --无
//.append("<CASETYPE3>").append(this.getBASE64(this.CSSCSPDW)).append("</CASETYPE3>") //案件类别3 --无
.append("<CASEDETAILS>").append(this.getBASE64(jyaq)).append("</CASEDETAILS>") //犯罪描述
.append("<NATIONALITY>").append(this.getBASE64(newryxx.getGjdm())).append("</NATIONALITY>") //国籍
.append("<NATION>").append(this.getBASE64(newryxx.getMzdm())).append("</NATION>") //民族
.append("<CRIMINALRECFLG>").append(this.getBASE64("")).append("</CRIMINALRECFLG>") //前科标识 无
.append("<CRIMINALREC>").append(this.getBASE64("")).append("</CRIMINALREC>") //前科情况 无
/*.append("<COLLECTUNITCODE>").append(this.getBASE64(newryxx.getZwcjdwdm())).append("</COLLECTUNITCODE>") //捺印单位代码 ----采集单位
.append("<COLLECTUNITNAME>").append(this.getBASE64("捺印单位名称")).append("</COLLECTUNITNAME>") //捺印单位名称 ---采集单位转换
.append("<COLLECTPSN>").append(this.getBASE64(newryxx.getZwcjr())).append("</COLLECTPSN>") //捺印人 -----采集人
.append("<COLLECTDATE>").append(this.getBASE64(newryxx.getZwcjsj()==null?"":newryxx.getZwcjsj().toString())).append("</COLLECTDATE>") //捺印日期
-=----指纹采集时间
*/
.append("<COLLECTUNITCODE>").append(this.getBASE64(newryxx.getZwcjdwdm())).append("</COLLECTUNITCODE>") //捺印单位代码 ----采集单位
.append("<COLLECTUNITNAME>").append(this.getBASE64("")).append("</COLLECTUNITNAME>") //捺印单位名称 ---采集单位转换
.append("<COLLECTPSN>").append(this.getBASE64(newryxx.getZwcjr())).append("</COLLECTPSN>") //捺印人 -----采集人
.append("<COLLECTDATE>").append(this.getBASE64(new SimpleDateFormat("yyyy-MM-dd").format(new Date()))).append("</COLLECTDATE>") //捺印日期
.append("<CHECKGRADE>").append(this.getBASE64("")).append("</CHECKGRADE>") //协查级别 无
.append("<REWARD>").append(this.getBASE64("")).append("</REWARD>") //奖金 无
.append("<CHECKAIM>").append(this.getBASE64("")).append("</CHECKAIM>") //协查目的 无
.append("<RELPSNID>").append(this.getBASE64("")).append("</RELPSNID>") //相关人员编号 无
.append("<RELCASEID>").append(this.getBASE64("")).append("</RELCASEID>") //相关案件编号 做关联
.append("<CHECKDEADLINE>").append(this.getBASE64("")).append("</CHECKDEADLINE>") //协查期限 无
.append("<CHECKDESC>").append(this.getBASE64("")).append("</CHECKDESC>") //协查说明 无
.append("<CHECKUNITCODE>").append(this.getBASE64("")).append("</CHECKUNITCODE>") //协查单位代码 无
.append("<CHECKUNITNAME>").append(this.getBASE64("")).append("</CHECKUNITNAME>")
.append("<CHECKDATE>").append(this.getBASE64("")).append("</CHECKDATE>") //协查日期 无
.append("<CONTACTPSN>").append(this.getBASE64("")).append("</CONTACTPSN>") //联系人
.append("<CONTACTPHONE>").append(this.getBASE64(newryxx.getLxdm())).append("</CONTACTPHONE>") //联系电话
.append("<APPROVER>").append(this.getBASE64("")).append("</APPROVER>") //审批人 无
.append("<CHECKFLG>").append(this.getBASE64("")).append("</CHECKFLG>") //是否协查的标志 无
.append("<REMARK>").append(this.getBASE64("")).append("</REMARK>") //备注 无
.append("<CREATEUNIT>").append(this.getBASE64(newryxx.getLrdwdm())).append("</CREATEUNIT>") //创建单位代码 ---录入单位
.append("<CREATEUSER>").append(this.getBASE64(newryxx.getLrr())).append("</CREATEUSER>") //创建人 ---录入人
.append("<CREATETIME>").append(this.getBASE64(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(newryxx.getLrsj()))).append("</CREATETIME>") //创建时间
.append("<UPDATETIME>").append(this.getBASE64(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(newryxx.getGxsj()))).append("</UPDATETIME>") //修改时间
.append("<REMOVEFLAG>").append(this.getBASE64("0")).append("</REMOVEFLAG>") //删除标志 ---0
.append("<LOGICDBTYPE>").append(this.getBASE64("0100000000000000000000000000000000")).append("</LOGICDBTYPE>") //逻辑库
/*AMSIS系统重新计算,所以这边无需同步
* .append("<PICCOUNT>").append(this.getBASE64(this.getPicNum(this.R_RYBH))).append("</PICCOUNT>") //人像个数
.append("<ROLLCOUNT>").append(this.getBASE64("1")).append("</ROLLCOUNT>") //滚动指纹个数
.append("<PLANCOUNT>").append(this.getBASE64("1")).append("</PLANCOUNT>") //平面指纹个数
.append("<PLAMCOUNT>").append(this.getBASE64("1")).append("</PLAMCOUNT>") */ //掌纹个数
//.append("<FINGERVALUE>").append(this.getBASE64(newryxx.getZwfkxx())).append("</FINGERVALUE>") //指纹入库返回值 ---指纹反馈信息 ZWFKXX!!!!
// A1B0000000000C0000000000D00E00F00000000G00000000H00000000
.append("<FINGERVALUE>").append(this.getBASE64("A1B0000000000C0000000000D00E00F00000000G00000000H00000000")).append("</FINGERVALUE>")
.append("</PERSON>");
return xml.toString();
}
//拼接AMSISService照片信息的XML文件 add by jiaorong 20150106
private String getPsnpicAmsisXml(AutoTbStRy newryxx) {
//根据人员信息获取人员编号
// RyRycj newryxx = ythcjRyxxServiceImpl.getRyxxById(rybh);
//R_ZMZP、R_CMZP、R_YCMZP
Map<String, Object> map = new HashMap<>();
map.put("rybh",newryxx.getRybh());
List<AutoTbRyZp> ryzpList = tbRyRyzpService.getTbRyRyzpByRybh(map,newryxx.getRybh().substring(1,12));
String zmzpBase64 = new BASE64Encoder().encode("".getBytes());
String cmzpBase64 = new BASE64Encoder().encode("".getBytes());
String ymzpBase64 = new BASE64Encoder().encode("".getBytes());
try {
if(ryzpList!=null&&ryzpList.size()>0){
for(int i=0;i<ryzpList.size();i++){
AutoTbRyZp autoTbRyZp = ryzpList.get(i);
if("2".equals(autoTbRyZp.getZpbw())){
if(autoTbRyZp.getDzwjnr()!=null){
zmzpBase64 = new BASE64Encoder().encode(autoTbRyZp.getDzwjnr()).replace("\r\n", "").replace("\n","").replace("\r","");
System.out.println("正面照片格式正确,返回:"+isImage(zmzpBase64));
}
}else if("3".equals(autoTbRyZp.getZpbw())){
if(autoTbRyZp.getDzwjnr()!=null){
cmzpBase64 = new BASE64Encoder().encode(autoTbRyZp.getDzwjnr()).replace("\r\n", "").replace("\n","").replace("\r","");
System.out.println("侧面照片格式正确,返回:"+isImage(cmzpBase64));
}
}else if("4".equals(autoTbRyZp.getZpbw())){
if(autoTbRyZp.getDzwjnr()!=null){
ymzpBase64 = new BASE64Encoder().encode(autoTbRyZp.getDzwjnr()).replace("\r\n", "").replace("\n","").replace("\r","");
System.out.println("右侧面照片格式正确,返回:"+isImage(ymzpBase64));
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
StringBuffer xml = new StringBuffer();
xml.append("<?xml version=\"1.0\" encoding=\"utf-8\" ?>");
xml.append("<FACE>")
.append("<BARCODE>").append(newryxx.getRybh().substring(1,newryxx.getRybh().length())).append("</BARCODE>") //条码号
.append("<IMGTYPE>").append("1").append("</IMGTYPE>") //图像类型
.append("<COMPRESSMETHOD>").append("1").append("</COMPRESSMETHOD>") //压缩代码
.append("<FCPWIDTH>").append("").append("</FCPWIDTH>") //图片宽度
.append("<FCPHEIGHT>").append("").append("</FCPHEIGHT>") //图片高度
.append("<FCP1SIZE>").append("").append("</FCP1SIZE>") //正面图片大小
.append("<FCP1>").append(zmzpBase64).append("</FCP1>") //正面照片
.append("<FCP2SIZE>").append("").append("</FCP2SIZE>") //左侧图片大小
.append("<FCP2>").append(cmzpBase64).append("</FCP2>") //左侧照片
.append("<FCP3SIZE>").append("").append("</FCP3SIZE>") //右侧图片大小
.append("<FCP3>").append(ymzpBase64).append("</FCP3>") //右侧照片
.append("<PICCOUNT>").append("3").append("</PICCOUNT>") //人像个数
.append("</FACE>");
return xml.toString();
}
//将 s 进行 BASE64 编码
public String getBASE64(String s) {
String strBase64 = "";
if (s == null){
s = "";
}
strBase64 = (new sun.misc.BASE64Encoder()).encode(s.getBytes());
return strBase64;
}
//校验能否生成图片
private boolean isImage(String imgBase64Str) throws Exception {
if (imgBase64Str==null||"".equals(imgBase64Str)) {
log.info("图片参数为空");
return false;
} else {
ByteArrayInputStream byteArrayInputStream = null;
try {
BASE64Decoder decoder = new BASE64Decoder();
byte[] byteArray = decoder.decodeBuffer(imgBase64Str);
byteArrayInputStream = new ByteArrayInputStream(byteArray);
BufferedImage bufImg = ImageIO.read(byteArrayInputStream);
if (bufImg == null) {
log.info("base64字符串不正确,生成图片失败:str={}", imgBase64Str);
return false;
}
bufImg = null;
} finally {
if (byteArrayInputStream != null) {
byteArrayInputStream.close();
}
}
}
return true;
}
}
......@@ -55,6 +55,7 @@ public class ZjCjController {
@RequestMapping("/toZjCj")
public ModelAndView toTest(ModelAndView model, HttpServletRequest request,HttpServletResponse response) {
TbXwYthcjZj zjxx = new TbXwYthcjZj();
boolean flg = true;
Map<String, Object> map = new HashMap<>();
map.put("rybh", request.getParameter("rybh"));
List<AutoTbRyZp> zjzpxxs = tbRyRyzpService.getTbRyZjzpListByRybh(map);
......@@ -100,6 +101,11 @@ public class ZjCjController {
}else if("28".equals(zjzp.getZpbw())){
zjxx.setCz_y(GetImageStrsByByte(zjzp.getDzwjnr()));
}
String sfts = zjzp.getSfts();
if("1".equals(sfts)){
}else{
flg = false;
}
}
}
model.addObject("rybh",request.getParameter("rybh"));
......@@ -107,6 +113,11 @@ public class ZjCjController {
model.addObject("zjhm",request.getParameter("gmsfhm"));
model.addObject("zjxx",zjxx);
model.addObject("isflag","0");
if(flg){
model.addObject("type","1");
}else{
model.addObject("type","0");
}
model.setViewName("zjcj/zjcj");
return model;
}
......@@ -121,11 +132,25 @@ public class ZjCjController {
}
@RequestMapping("/doSaveZjxx")
public String doSaveZjxx(TbXwYthcjZj zjxx, Model model, HttpServletRequest request, HttpServletResponse response) {
public String doSaveZjxx(TbXwYthcjZj zjxx,String type, Model model, HttpServletRequest request, HttpServletResponse response) {
User user = (User)request.getSession().getAttribute("User");
boolean photoflag = true;
String zzcjimg = null;
String xmcjimg = null;
if(zjxx.getSbxh()==null||"".equals(zjxx.getSbxh())){
zjxx.setSbxh("50014000");
}
boolean rst = useryanzheng_zj(user,zjxx,zjxx.getRybh());
rst = ryxxToZj(user,zjxx,zjxx.getRybh())==false?false:rst;
boolean flg_temp = rst;
boolean rstfal = false;
if(rst){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
//左足
if (zjxx.getGdxdhw_z() != null && zjxx.getGdxdhw_z().length() > 0) {
if(zjxx.getGdxdhw_z().indexOf("/9j/")>=0){
......@@ -135,12 +160,22 @@ public class ZjCjController {
}
}
if (zzcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xd1,")>=0)){
rstfal = xd_zj(user,"1",zjxx.getGdxdhw_z(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(zzcjimg, zjxx, user, "11", request);
if (num == "-1") {
photoflag = false;
}
}
zzcjimg=null;
/*
if (zjxx.getJtxdhw_z() != null && zjxx.getJtxdhw_z().length() > 0) {
if(zjxx.getJtxdhw_z().indexOf("/9j/")>=0){
zzcjimg = zjxx.getJtxdhw_z().substring(zjxx.getJtxdhw_z().indexOf("/9j/"));
......@@ -149,11 +184,21 @@ public class ZjCjController {
}
}
if (zzcjimg != null) {
if(flg_temp&&zjxx.getCjtpxh().indexOf("xd1,")>=0){
rstfal = xd_zj(user,"1",zjxx.getGdxdhw_z(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(zzcjimg, zjxx, user, "12", request);
if (num == "-1") {
photoflag = false;
}
}
*/
xmcjimg = null;
if (zjxx.getZmzp_z() != null && zjxx.getZmzp_z().length() > 0) {
if(zjxx.getZmzp_z().indexOf("/9j/")>=0){
......@@ -163,6 +208,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm1,")>=0)){
rstfal = xm_zj(user,"1",zjxx.getZmzp_z(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "13", request);
if (num == "-1") {
photoflag = false;
......@@ -177,6 +231,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm2,")>=0)){
rstfal = xm_zj(user,"2",zjxx.getNczp_z(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "14", request);
if (num == "-1") {
photoflag = false;
......@@ -191,6 +254,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm0,")>=0)){
rstfal = xm_zj(user,"0",zjxx.getWczp_z(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "15", request);
if (num == "-1") {
photoflag = false;
......@@ -205,6 +277,16 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm10,")>=0)){
rstfal = xm_zj(user,"10",zjxx.getHgzp_z(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "16", request);
if (num == "-1") {
photoflag = false;
......@@ -219,6 +301,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm11,")>=0)){
rstfal = xm_zj(user,"11",zjxx.getXd_z(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "17", request);
if (num == "-1") {
photoflag = false;
......@@ -233,6 +324,16 @@ public class ZjCjController {
}
}
if (zzcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xd3,")>=0)){
rstfal = xd_zj(user,"3",zjxx.getCz_z(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(zzcjimg, zjxx, user, "18", request);
if (num == "-1") {
photoflag = false;
......@@ -248,11 +349,21 @@ public class ZjCjController {
}
}
if (zzcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xd2,")>=0)){
rstfal = xd_zj(user,"2",zjxx.getGdxdhw_y(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(zzcjimg, zjxx, user, "21", request);
if (num == "-1") {
photoflag = false;
}
}
/*
zzcjimg=null;
if (zjxx.getJtxdhw_y() != null && zjxx.getJtxdhw_y().length() > 0) {
if(zjxx.getJtxdhw_y().indexOf("/9j/")>=0){
......@@ -267,6 +378,7 @@ public class ZjCjController {
photoflag = false;
}
}
*/
xmcjimg = null;
if (zjxx.getZmzp_y() != null && zjxx.getZmzp_y().length() > 0) {
if(zjxx.getZmzp_y().indexOf("/9j/")>=0){
......@@ -276,6 +388,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm4,")>=0)){
rstfal = xm_zj(user,"4",zjxx.getZmzp_y(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "23", request);
if (num == "-1") {
photoflag = false;
......@@ -290,6 +411,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm5,")>=0)){
rstfal = xm_zj(user,"5",zjxx.getNczp_y(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "24", request);
if (num == "-1") {
photoflag = false;
......@@ -304,6 +434,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm3,")>=0)){
rstfal = xm_zj(user,"3",zjxx.getWczp_y(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "25", request);
if (num == "-1") {
photoflag = false;
......@@ -318,6 +457,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm13,")>=0)){
rstfal = xm_zj(user,"13",zjxx.getHgzp_y(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "26", request);
if (num == "-1") {
photoflag = false;
......@@ -332,6 +480,15 @@ public class ZjCjController {
}
}
if (xmcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xm14,")>=0)){
rstfal = xm_zj(user,"14",zjxx.getXd_y(),zjxx.getRybh());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(xmcjimg, zjxx, user, "27", request);
if (num == "-1") {
photoflag = false;
......@@ -346,66 +503,90 @@ public class ZjCjController {
}
}
if (zzcjimg != null) {
if(flg_temp&&("0".equals(type)||zjxx.getCjtpxh().indexOf("xd4,")>=0)){
rstfal = xd_zj(user,"4",zjxx.getCz_y(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm());
if(rstfal){
zjxx.setSfts("1");
}else{
zjxx.setSfts("0");
}
rst = rstfal==false?false:rst;
}
String num = insPicByZj(zzcjimg, zjxx, user, "28", request);
if (num == "-1") {
photoflag = false;
}
}
/*
if(zjxx.getSbxh()==null||"".equals(zjxx.getSbxh())){
zjxx.setSbxh("50014000");
}
boolean rst = useryanzheng_zj(user,zjxx,zjxx.getRybh());
rst = ryxxToZj(user,zjxx,zjxx.getRybh())==false?false:rst;
//if(zjxx.getCjtpxh().indexOf("xd1,")>=0&&(zjxx.getGdxdhw_z()!=null && zjxx.getGdxdhw_z().length() > 0)){
//boolean rst = useryanzheng_zj(user,zjxx,zjxx.getRybh());
//rst = ryxxToZj(user,zjxx,zjxx.getRybh())==false?false:rst;
if(zjxx.getCjtpxh().indexOf("xd1,")>=0&&(zjxx.getGdxdhw_z()!=null && zjxx.getGdxdhw_z().length() > 0)){
//if(zjxx.getGdxdhw_z()!=null && zjxx.getGdxdhw_z().length() > 0){
rst = xd_zj(user,"1",zjxx.getGdxdhw_z(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xd2,")>=0&&(zjxx.getGdxdhw_y()!=null && zjxx.getGdxdhw_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xd2,")>=0&&(zjxx.getGdxdhw_y()!=null && zjxx.getGdxdhw_y().length() > 0)){
//if(zjxx.getGdxdhw_y()!=null && zjxx.getGdxdhw_y().length() > 0){
rst = xd_zj(user,"2",zjxx.getGdxdhw_y(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xd3,")>=0&&(zjxx.getCz_z()!=null && zjxx.getCz_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xd3,")>=0&&(zjxx.getCz_z()!=null && zjxx.getCz_z().length() > 0)){
//if(zjxx.getCz_z()!=null && zjxx.getCz_z().length() > 0){
rst = xd_zj(user,"3",zjxx.getCz_z(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xd4,")>=0&&(zjxx.getCz_y()!=null && zjxx.getCz_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xd4,")>=0&&(zjxx.getCz_y()!=null && zjxx.getCz_y().length() > 0)){
//if(zjxx.getCz_y()!=null && zjxx.getCz_y().length() > 0){
rst = xd_zj(user,"4",zjxx.getCz_y(),zjxx.getRybh(),zjxx.getSbxh(),zjxx.getXzpp(),zjxx.getXzcm())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm0,")>=0&&(zjxx.getWczp_z()!=null && zjxx.getWczp_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm0,")>=0&&(zjxx.getWczp_z()!=null && zjxx.getWczp_z().length() > 0)){
//if(zjxx.getWczp_z()!=null && zjxx.getWczp_z().length() > 0){
rst = xm_zj(user,"0",zjxx.getWczp_z(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm1,")>=0&&(zjxx.getZmzp_z()!=null && zjxx.getZmzp_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm1,")>=0&&(zjxx.getZmzp_z()!=null && zjxx.getZmzp_z().length() > 0)){
//if(zjxx.getZmzp_z()!=null && zjxx.getZmzp_z().length() > 0){
rst = xm_zj(user,"1",zjxx.getZmzp_z(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm2,")>=0&&(zjxx.getNczp_z()!=null && zjxx.getNczp_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm2,")>=0&&(zjxx.getNczp_z()!=null && zjxx.getNczp_z().length() > 0)){
//if(zjxx.getNczp_z()!=null && zjxx.getNczp_z().length() > 0){
rst = xm_zj(user,"2",zjxx.getNczp_z(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm3,")>=0&&(zjxx.getWczp_y()!=null && zjxx.getWczp_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm3,")>=0&&(zjxx.getWczp_y()!=null && zjxx.getWczp_y().length() > 0)){
//if(zjxx.getWczp_y()!=null && zjxx.getWczp_y().length() > 0){
rst = xm_zj(user,"3",zjxx.getWczp_y(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm4,")>=0&&(zjxx.getZmzp_y()!=null && zjxx.getZmzp_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm4,")>=0&&(zjxx.getZmzp_y()!=null && zjxx.getZmzp_y().length() > 0)){
//if(zjxx.getZmzp_y()!=null && zjxx.getZmzp_y().length() > 0){
rst = xm_zj(user,"4",zjxx.getZmzp_y(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm5,")>=0&&(zjxx.getNczp_y()!=null && zjxx.getNczp_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm5,")>=0&&(zjxx.getNczp_y()!=null && zjxx.getNczp_y().length() > 0)){
//if(zjxx.getNczp_y()!=null && zjxx.getNczp_y().length() > 0){
rst = xm_zj(user,"5",zjxx.getNczp_y(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm10,")>=0&&(zjxx.getHgzp_z()!=null && zjxx.getHgzp_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm10,")>=0&&(zjxx.getHgzp_z()!=null && zjxx.getHgzp_z().length() > 0)){
//if(zjxx.getHgzp_z()!=null && zjxx.getHgzp_z().length() > 0){
rst = xm_zj(user,"10",zjxx.getHgzp_z(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm11,")>=0&&(zjxx.getXd_z()!=null && zjxx.getXd_z().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm11,")>=0&&(zjxx.getXd_z()!=null && zjxx.getXd_z().length() > 0)){
//if(zjxx.getXd_z()!=null && zjxx.getXd_z().length() > 0){
rst = xm_zj(user,"11",zjxx.getXd_z(),zjxx.getRybh())==false?false:rst;
//}
}
//if(zjxx.getCjtpxh().indexOf("xm12,")>=0&&(zjxx.getJtxdhw_z()!=null && zjxx.getJtxdhw_z().length() > 0)){
rst = xm_zj(user,"12",zjxx.getJtxdhw_z(),zjxx.getRybh())==false?false:rst;
//rst = xm_zj(user,"12",zjxx.getJtxdhw_z(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm13,")>=0&&(zjxx.getHgzp_y()!=null && zjxx.getHgzp_y().length() > 0)){
if(zjxx.getCjtpxh().indexOf("xm13,")>=0&&(zjxx.getHgzp_y()!=null && zjxx.getHgzp_y().length() > 0)){
//if(zjxx.getHgzp_y()!=null && zjxx.getHgzp_y().length() > 0){
rst = xm_zj(user,"13",zjxx.getHgzp_y(),zjxx.getRybh())==false?false:rst;
//}
//if(zjxx.getCjtpxh().indexOf("xm14,")>=0&&(zjxx.getXd_y()!=null && zjxx.getXd_y().length() > 0)){
}
if(zjxx.getCjtpxh().indexOf("xm14,")>=0&&(zjxx.getXd_y()!=null && zjxx.getXd_y().length() > 0)){
//if(zjxx.getXd_y()!=null && zjxx.getXd_y().length() > 0){
rst = xm_zj(user,"14",zjxx.getXd_y(),zjxx.getRybh())==false?false:rst;
//}
}
//if(zjxx.getCjtpxh().indexOf("xm15,")>=0&&(zjxx.getJtxdhw_y()!=null && zjxx.getJtxdhw_y().length() > 0)){
rst = xm_zj(user,"15",zjxx.getJtxdhw_y(),zjxx.getRybh())==false?false:rst;
//rst = xm_zj(user,"15",zjxx.getJtxdhw_y(),zjxx.getRybh())==false?false:rst;
//}
*/
model.addAttribute("username",user.getUsername());
model.addAttribute("unitcode",user.getUnitcode());
model.addAttribute("rybh",zjxx.getRybh());
......@@ -414,8 +595,10 @@ public class ZjCjController {
model.addAttribute("zjxx",zjxx);
if(rst){
model.addAttribute("isflag","1");
model.addAttribute("type","1");
}else{
model.addAttribute("isflag","2");
model.addAttribute("type","0");
}
return "zjcj/zjcj.html";
}
......@@ -503,12 +686,12 @@ public class ZjCjController {
ryzp.setXzpp(zjxx.getXzpp());
ryzp.setXzcm(zjxx.getXzcm());
ryzp.setSfcj(zjxx.getSfcj());
ryzp.setSfts(zjxx.getSfts());
if (zpxxbh != null && !zpxxbh.equals("")) {
xxbhflag = tbRyRyzpService.updateTbRyZjzp(ryzp, user.getUnitcode());
} else {
xxbhflag = tbRyRyzpService.insertTbRyZjzp(ryzp, user.getUnitcode());
}
} catch (Exception e) {
return "-1";
} finally {
......@@ -550,13 +733,13 @@ public class ZjCjController {
Object[] results = null;
try {
Client client = new Client(new URL(URL));
Object obj[] = new Object[] {user.getUsername(),user.getUsername(),user.getTrueName(),user.getUnitcode(),"123"};
//Object obj[] = new Object[] {user.getUsername(),user.getUsername(),user.getTrueName(),"430103201000",""};
//Object obj[] = new Object[] {user.getUsername(),user.getUsername(),user.getTrueName(),user.getUnitcode(),"123"};
Object obj[] = new Object[] {user.getUsername(),user.getUsername(),user.getTrueName(),user.getUnitcode(),""};
results = client.invoke("SynchroUser", obj);
if(results==null||"".equals(results)){
flg = false;
System.out.println("用户验证调用返回:无");
}else if(results[0]=="0"){
}else if("0".equals(results[0].toString())){
flg = true;
System.out.println("用户验证调用返回:"+results[0]);
}else{
......@@ -612,7 +795,6 @@ public class ZjCjController {
sfzh = ryxx.getZjhm();
}
Client client = new Client(new URL(URL));
//Object obj[] = new Object[] {user.getUsername(),user.getUsername(),user.getTrueName(),user.getUnitcode(),"123"};
String nl = "0";
if(sfzh!=null&&!"".equals(sfzh)&&!"无".equals(sfzh)){
Calendar date = Calendar.getInstance();
......@@ -623,15 +805,15 @@ public class ZjCjController {
nl = "0";
}
System.out.println("足迹信息推送:"+user.getUsername()+" | "+rybh+" | "+ryxx.getXm()+" | "+ryxx.getXbdm()+" | "+nl+" | "+ryxx.getSgsx()+" | "+ryxx.getXzzDzmc()+" | "+ryxx.getHjdzXzqhdm()+" | "+sfzh+" | "+ryxx.getCsrqQsrqStr()+" | "+ryxx.getZhsjStr()+" | "+ryxx.getZhdwdm()+" | 嫌疑人足迹采集 | W1505 | "+ryxx.getTzsx()+" | "+ryxx.getZc()+" | "+"1"+" | "+zjxx.getSfcj()+" | "+(ryxx.getZwcjr()==null?"":ryxx.getZwcjr()));
//Object obj[] = new Object[] {user.getUsername(),rybh,ryxx.getXm(),ryxx.getXbdm(),nl,ryxx.getSgsx(),ryxx.getXzzDzmc(),
// ryxx.getHjdzXzqhdm(),sfzh,ryxx.getCsrqQsrqStr(),ryxx.getZhsjStr(),ryxx.getZhdwdm(),"嫌疑人足迹采集","W1505",ryxx.getTzsx(),ryxx.getZc(),zjxx.getSfcj(),ryxx.getZwcjr()==null?"":ryxx.getZwcjr()};
Object obj[] = new Object[] {user.getUsername(),rybh,ryxx.getXm(),ryxx.getXbdm(),nl,ryxx.getSgsx(),ryxx.getXzzDzmc(),
ryxx.getHjdzXzqhdm(),sfzh,ryxx.getCsrqQsrqStr(),ryxx.getZhsjStr(),ryxx.getZhdwdm(),"嫌疑人足迹采集","W1505"};
ryxx.getHjdzXzqhdm(),sfzh,ryxx.getCsrqQsrqStr(),ryxx.getZhsjStr(),ryxx.getZhdwdm(),"嫌疑人足迹采集","W1505",ryxx.getTzsx(),ryxx.getZc(),zjxx.getSfcj(),ryxx.getZwcjr()==null?"":ryxx.getZwcjr()};
//Object obj[] = new Object[] {user.getUsername(),rybh,ryxx.getXm(),ryxx.getXbdm(),nl,ryxx.getSgsx(),ryxx.getXzzDzmc(),
// ryxx.getHjdzXzqhdm(),sfzh,ryxx.getCsrqQsrqStr(),ryxx.getZhsjStr(),ryxx.getZhdwdm(),"嫌疑人足迹采集","W1505"};
results = client.invoke("SynchroRyxx", obj);
if(results==null||"".equals(results)){
flg = false;
System.out.println("人员信息调用返回:无");
}else if(results[0]=="0"){
}else if("0".equals(results[0].toString())){
flg = true;
System.out.println("人员信息调用返回:"+results[0]);
}else{
......@@ -654,13 +836,13 @@ public class ZjCjController {
Object[] results = null;
try {
Client client = new Client(new URL(URL));
//Object obj[] = new Object[] {user.getUsername(),rybh,"1",num,zjxxImg,1,sbxh,xzcm,xzpp};
Object obj[] = new Object[] {user.getUsername(),rybh,"1",num,zjxxImg,1,sbxh};
Object obj[] = new Object[] {user.getUsername(),rybh,"1",num,zjxxImg,1,sbxh,xzcm,xzpp};
//Object obj[] = new Object[] {user.getUsername(),rybh,"1",num,zjxxImg,1,sbxh};
results = client.invoke("SynchroRyFootXd", obj);
if(results==null||"".equals(results)){
flg = false;
System.out.println("鞋底调用返回:无");
}else if(results[0]=="0"){
}else if("0".equals(results[0].toString())){
flg = true;
System.out.println("鞋底调用返回:"+results[0]);
}else{
......@@ -688,7 +870,7 @@ public class ZjCjController {
if(results==null||"".equals(results)){
flg = false;
System.out.println("鞋面调用返回:无");
}else if(results[0]=="0"){
}else if("0".equals(results[0].toString())){
flg = true;
System.out.println("鞋面调用返回:"+results[0]);
}else{
......
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( '提示',"身高体重读取失败!");
}
......
@charset "UTF-8";
html,body{width:100%;height:100%;background: #E1EBF2;}
html, body, div,text, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-family: "ËÎÌå","serif","sans-serif","cursive","fantasy","monospace","Times New Roman",Georgia,Serif;
font-size: 12px;
}
/* 标题 */
.header{height:60px;line-height: 60px;background: linear-gradient(#001B79, #042986);text-shadow: 0px 10px 10px #000b1c;color:#fff;font-size:28px;font-weight: 600; text-indent: 16px;}
.header img{height:40px;margin-right:10px;margin-left:20px;position: relative;top: -3px;}
.wrap{height:calc(100% - 60px);width: 100%;overflow:hidden;}
.rightBox{float: right;margin-right: 20px;color: #fff;}
.rightBox a{color:#fff;margin-right:14px;cursor: pointer;}
.rightBox i{margin:0 4px;}
header.title{background: #fff;width:100%;height:40px;line-height: 40px;text-indent: 12px;font-size: 14px;font-weight:600;}
header.title i{margin-right:5px;}
/* 内容区 */
.righticon{position: absolute;right:10px;top:11px;font-size: 16px;font-weight: 600;}
.rightWrap,.leftWrap{float: left;}
.rightWrap>div{}
.zdytable{border: 1px solid #ccc;
border-top: none;
width: 100%;
color: #333;
font-size: 14px;}
.zdytable tr {
border: 1px dashed #f2f2f2;
}
.zdytable td {
margin-top: -1px;
height: 28px;
line-height: 28px;
}
.ar {
text-align: right;
}
.ac{text-align: center;}
.zdytable .textbox-zdy {
display: inline-block;
height: 25px;
line-height: 25px;
border: 1px solid #ccc;
border-radius: 4px;
width: 80%;
top: -2px;
}
.zdytable .textbox-zdy input, .zdytable .textbox-zdy select {
width: 100%;
}
.zdytable .textbox-zdy input[type="radio"]{width:20px;height: 20px;}
.zdytable input {
height: 23px;
line-height: 23px;
margin-top: -4px;
}
.leftWrap{width:200px;background: linear-gradient(#042886, #55CEC7);height:100%;overflow-y: auto;}
.subMenu li{height:28px;line-height: 28px;text-indent: 8px;}
.subMenu li i{margin:0 4px;}
.rightWrap{width:calc(100% - 200px);height:100%;overflow-y: auto;}
.line1{width:calc(100% - 20px);height:auto;margin:8px 10px;}
.line2{width:calc(100% - 20px);height:calc(100% - 273px);margin:8px 10px;display: flex;}
.leftbox,.centerbox,.rightbox{box-shadow: 0px 3px 10px #b4b4b4;border-radius: 5px;background: #fff;padding:0 10px;}
.line1 .leftbox{flex: 1;height:100%;margin:0 30px;}
.line1 .centerbox{width:100%;height:100%;}
.line1 .rightbox{width:calc(25% - 21px);height:100%;}
.line2 .leftbox{flex: 1;height:100%;margin:0;width:100%;}
.jbxxTableWrap{table-layout: fixed;}
.jbxxTableWrap tr td,.jbxxTableWrap tr th{
color: #666;
margin-top: -1px;
height: 34px;
line-height: 34px;
}
.jbxxTableWrap tr.empty td{height:0px;line-height: 0px;}
.jbxxTableWrap td.ar{
color: #0066CC;
}
.jbxxTableWrap tr{
border-bottom: 1px dashed #e8e8e8;
}
.ryzpcj{/*display: table;width:100%;*/}
.ryzpcj dl{float:left;text-align: center;width:30%;margin:15px 1%;cursor: pointer;}
.ryzpcj dd{line-height: 26px;font-weight: 600;}
.ryzpcj dl img{width:calc(100% - 20px);margin:10px; border-radius: 5px;}
.ryzpcj dl:hover img{box-shadow: 1px 3px 5px rgba(0,0,0,0.35);}
.line2 .rightbox{flex: 1;height:100%;}
.boder-left{display: inline-block;width:4px;height:26px;background: #32437A;margin-right:10px;position: relative;top:-7px;}
.list{display: inline-block;float:right;}
.list li{float: left;margin:0 15px;cursor: pointer;}
.line1 h1,.line2 h1{height:40px;line-height: 40px;border-bottom:1px solid #F1F1F1;position: relative;}
.active{color:#1E9BEF;border-bottom: 2px solid #1E9BEF;}
.left-menu{width:200px;height:calc(100% - 10px);margin:5px auto;border-radius: 5px;position: relative;left:0px;}
.article{height:100%;width:136px;float:left;}
.cont{float:left;width:calc(100% - 4px);height: 100%;}
.menu{width:100%;}
.left-menu .menu>li{cursor:pointer;width:calc(100% - 30px);position:relative;background: rgba(0,0,0,0.2);margin:8px 15px;color:#fff;border-radius:4px;text-indent: 16px;}
.menu>li>a{display:inline-block;padding:10px 0;color:#fff;width: 100%;position: relative;left: -12px;}
.menu>li>a .count{
display: inline-block;
padding: 0 2px;
min-width: 18px;
height: 18px;
line-height: 18px;
text-align: center;
border-radius: 5px;
text-indent: 0px;
background: #f90;
margin-left: 5px;
}
.left-menu .menu>li.active{
background: rgba(0,0,0,0.4) url(/static/rygl/css/images/border-left.png) no-repeat 1px 0px;
border: none;
background-size: auto 36px;
}
.rybq{display: inline-block;margin:0 3px;padding:0 3px;height:20px;line-height: 20px;border: 1px solid #dd3b0a;border-radius: 3px;color: #dd3b0a;}
.rybq:hover{color: #dd3b0a;}
.cont .content,.bsh,.chooseajbz,.ajbz{height:calc(100% - 50px);width:100%;border:1px solid #ccc;margin:0;overflow-y: auto;}
.bsh,.chooseajbz,.ajbz{border:none;}
.bsh li{padding:5px 15px;background: #4DCDF2;border-radius: 5px;margin:5px auto;color:#fff;}
.eclipse{
display: inline-block;
vertical-align: middle;
width: 100px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.ajxx td{line-height: 36px;}
.ajxx tr{border-bottom:1px dashed #ccc;background: #f6f6f6;}
.line1 h1 p,.line2 h1 p{display: inline-block;width: calc(100% - 20px);}
.iconsq{
float: right;
font-size: 27px;
line-height: 37px;
color: red;
cursor: pointer;
}
.fllist span{display: inline-block;width:74px;text-align: right;}
.fllist{line-height: 26px;}
.fllist input{position: relative;top: -3px;}
.fllist label{margin-right: 8px;}
.fldetai{width: 100%;overflow: hidden;height:calc(100% - 26px);}
.fldetai li{float: left;width:24%;margin-right:1%;background: #ED6615;height:100%; overflow-y: auto;color:#fff;}
.fldetai li:nth-child(2){background: #24A5E8;}
.fldetai li:nth-child(3){background: #47E1C3;}
.fldetai li:nth-child(4){background: #FFAE00;}
.fldetai li p{height:26px;text-align: center;width:100%;font-weight: 600;line-height: 26px;}
.treelist{height:calc(100% - 26px);background: rgba(0,0,0,0.2);}
.Wdate{width:80% !important;}
.btn_a{
padding: 5px 12px;
color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 10px;
cursor: pointer;
}
.btn_a:hover{
color: #fff;
}
.btn_search{
background-color: #3692C6;
border-color: #217cb1;
}
.btn_search:hover{
background-color: #217cb1;
}
/*.btn_empty{*/
/*background-color: #d23535;*/
/*border-color: #b81e1e;*/
/*}*/
.btn_empty{
background-color: #f60;
border-color: #d45602;
}
.btn_empty:hover{
background-color: #d45602;
}
.btn_add{
background-color: #228B22;
border-color: #008000;
}
.btn_add:hover{
background-color: #008000;
}
/*标签*/
.plus-tag{display: table;width: 100%;}
.plus-tag a {
color: #fff;
display: block;
float: left;
position: relative;
height: 24px;
line-height: 24px;
margin: 1px 0;
padding: 0 10px 0 5px;
white-space: nowrap;
background:#005bd2;
margin-left:30px;
padding-left: 14px;
}
.plus-tag a.activet{background:#FF6600;}
.plus-tag a.activet .sj{border-right: 12px solid #FF6600;}
.plus-tag a .sj{
width: 0;
height: 0;
border-top: 12px solid transparent;
border-right: 12px solid #005bd2;
border-bottom: 12px solid transparent;
position: absolute;
left: -12px;
}
.plus-tag a span {
float: left;
color:#fff;
}
.plus-tag a em {
float: left;
position: absolute;
left:0px;
top:8px;
width:8px;
height:8px;
background:#fff;
border-radius:50%;
}
.default-tag a, .default-tag a span, .plus-tag a, .plus-tag a em, .plus-tag-add a {
}
.plus-tag a {
}
.Wdate{width:calc(50% - 7px) !important;border:1px solid #ccc;border-radius:4px;}
/* 气泡 */
.wrapper {
margin: 0 auto;
padding:0;
width: 100%;
}
.tagcloud {
position: relative;
margin-top: 60px;
}
.tagcloud a {
display: block;
border-radius: 50%;
color: #fff;
font-weight: bold;
font-size: 16px;
text-decoration: none;
text-align: center;
}
.b01{
width: 80px;
height: 80px;
line-height: 80px;
}
.b02{
width: 60px;
height: 60px;
line-height: 60px;
}
.b03{
width: 50px;
height: 50px;
line-height: 50px;
}
.b04{
width: 40px;
height: 40px;
line-height: 40px;
}
.co01{
background: -moz-linear-gradient(top, #d1e5fd 0%, #3d86f4 100%);
background: -webkit-linear-gradient(top, #d1e5fd 0%,#3d86f4 100%);
background: -o-linear-gradient(top, #d1e5fd 0%,#3d86f4 100%);
background: -ms-linear-gradient(top, #d1e5fd 0%,#3d86f4 100%);
background: linear-gradient(to bottom, #d1e5fd 0%,#3d86f4 100%);
}
.co02{
background: -moz-linear-gradient(top, #b9f8ff 0%, #1de7ff 100%);
background: -webkit-linear-gradient(top, #b9f8ff 0%,#1de7ff 100%);
background: -o-linear-gradient(top, #b9f8ff 0%,#1de7ff 100%);
background: -ms-linear-gradient(top, #b9f8ff 0%,#1de7ff 100%);
background: linear-gradient(to bottom, #b9f8ff 0%,#1de7ff 100%);
}
.co03{
background: -moz-linear-gradient(top, #fff4e2 0%, #ffd79c 100%);
background: -webkit-linear-gradient(top, #fff4e2 0%,#ffd79c 100%);
background: -o-linear-gradient(top, #fff4e2 0%,#ffd79c 100%);
background: -ms-linear-gradient(top, #fff4e2 0%,#ffd79c 100%);
background: linear-gradient(to bottom, #fff4e2 0%,#ffd79c 100%);
}
.co04{
background: -moz-linear-gradient(top, #fef4fa 0%, #fbbae0 100%);
background: -webkit-linear-gradient(top, #fef4fa 0%,#fbbae0 100%);
background: -o-linear-gradient(top, #fef4fa 0%,#fbbae0 100%);
background: -ms-linear-gradient(top, #fef4fa 0%,#fbbae0 100%);
background: linear-gradient(to bottom, #fef4fa 0%,#fbbae0 100%);
}
.co05{
background: -moz-linear-gradient(top, #fedc90 0%, #ffb515 100%);
background: -webkit-linear-gradient(top, #fedc90 0%,#ffb515 100%);
background: -o-linear-gradient(top, #fedc90 0%,#ffb515 100%);
background: -ms-linear-gradient(top, #fedc90 0%,#ffb515 100%);
background: linear-gradient(to bottom, #fedc90 0%,#ffb515 100%);
}
.co06{
background: -moz-linear-gradient(top, #bcf7ca 0%, #1fda4b 100%);
background: -webkit-linear-gradient(top, #bcf7ca 0%,#1fda4b 100%);
background: -o-linear-gradient(top, #bcf7ca 0%,#1fda4b 100%);
background: -ms-linear-gradient(top, #bcf7ca 0%,#1fda4b 100%);
background: linear-gradient(to bottom, #bcf7ca 0%,#1fda4b 100%);
}
.co07{
background: -moz-linear-gradient(top, #f7cdf8 0%, #db43e7 100%);
background: -webkit-linear-gradient(top, #f7cdf8 0%,#db43e7 100%);
background: -o-linear-gradient(top, #f7cdf8 0%,#db43e7 100%);
background: -ms-linear-gradient(top, #f7cdf8 0%,#db43e7 100%);
background: linear-gradient(to bottom, #f7cdf8 0%,#db43e7 100%);
}
/* 数字 */
/*-=-=-=-=-=-=-=-=-=-=-=- */
/* Column Grids */
/*-=-=-=-=-=-=-=-=-=-=-=- */
.col_half { width: 49%; }
.col_third { width: 32%; }
.col_fourth { width: calc(25% - 33px); }
.col_fifth { width: 18.4%; }
.col_sixth { width: 15%; }
.col_three_fourth { width: 74.5%;}
.col_twothird{ width: 66%;}
.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth{
position: relative;
display:inline;
display: inline-block;
float: left;
margin-right: 10px;
margin-bottom: 10px;
margin-top: 10px;
margin-left: 20px;
}
.end { margin-right: 0 !important; }
/* Column Grids End */
.wrapper { width: 980px; margin: 30px auto; position: relative;}
.counter { background-color: #ffffff; padding: 10px 0; border-radius: 5px;}
.count-title { font-size: 40px; font-weight: normal; margin-top: 10px; margin-bottom: 0; width: calc(100% - 83px); float: left;text-align: right; }
.count-text { font-size: 13px; font-weight: normal; margin-top: 10px; margin-bottom: 0; text-align: center; }
.fa-2x { margin: 0 auto; float: none; display: table; color: #4ad1e5; }
.leftIcon{float: left;width:60px;height:60px;background: #ED6615;border-radius: 50%;font-size: 23px;color: #fff;text-align: center;line-height: 60px; margin-left: 10px;}
.counter:nth-child(2) .leftIcon{background: #FFAE00;}
.counter:nth-child(3) .leftIcon{background: #24A5E8;}
.counter:nth-child(4) .leftIcon{background: #32C8CC;}
/* */
.splist{line-height: 26px;text-indent: 16px;}
.spTitle{font-weight: 600;}
.spnum{color:#fc0808;font-size: 14px;font-weight: 600;}
.select-wrap {
position: absolute;
left: 111px;
top: -1px;
}
.content {
padding: 0px;
}
.label-btn {
padding: 4px 15px;
}
.lpaqk-content,.zhryqk-content{height: calc(100% - 6px);overflow-y: auto;}
.label-btn {
border: 1px solid #f2f2f2;
}
.subMenu li.act{color:#24a5e8;}
/*上传照片*/
/*上传图片通用样式*/
.upload-ul{ position: relative; display: inline-block; *display: inline; *zoom:1; }
.upload-ul li{ position: relative; float: left; display: inline-block; width: 160px; height: 220px; margin: 0 23px 16px 10px; padding: 0; border: none; cursor: pointer; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; overflow: hidden; }
.upload-pick{ background: none; background-size: cover;border:1px solid #ccc !important;border-radius:5px;text-align: center;line-height: 220px;font-size:30px;}
.upload-pick:hover{ background: #b7f0f9; background-size: cover;}
.upload-pick:hover .webuploader-pick{color:#00a2bb;}
.webuploader-pick{position: relative;font-size:103px;display: inline-block;vertical-align: top; width: 100%; height: 100%;}
.webuploader-container{ position: relative; width: 100%; height: 100%; }
.webuploader-container label{position: absolute;left: 0;top: 0;width: 100%;}
.webuploader-element-invisible{opacity: 0;width: 100%;height: 100%;clip: rect(1px 1px 1px 1px);clip: rect(1px,1px,1px,1px);}
.viewThumb{ position:relative;width: 100%;height: 100%;overflow:hidden;border-radius: .3rem;}
.viewThumb img{ width: 100%;height: 100%}
.diyBar{ position: absolute; display:none; top: 0;left: 0;width: 100%;height: 100%;background: url(/static/rygl/css/images/bgblack.png);z-index: 3;}
.diyProgress{ position: absolute; left: 0;top: 33px;width: 100%;height: 24px;line-height:24px;font-size: 14px;text-align: center;color: #FFF;background:rgba(10,168,241,.7); z-index: 3;}
.diyControl{ position: absolute; display:none; left: 0;bottom: 0;width: 100%;height: 24px;line-height:24px;font-size: 14px;background: url(/static/rygl/css/images/bgblack.png); z-index: 3; }
.viewThumb:hover .diyControl{ display: block;text-align: center;}
.diyControl span{ display: inline-block; padding: 6.5px 13px; width: 12px; height: 11px; }
.diyControl span i{ display: block; width: 12px; height: 11px; opacity: .7; }
.diyControl span i:hover{ opacity: 1; cursor: pointer; }
.diyLeft{ margin-left: 0px; }
.diyLeft{ margin-right: 3px; }
.diyLeft i{ margin-left: 3px; background: url(/static/rygl/css/images/upload-icon1.png) no-repeat 0 0; }
.diyCancel i{ background: url(/static/rygl/css/images/upload-icon1.png) no-repeat 0 -11px; }
.diyRight i{ margin-right: 3px; background: url(/static/rygl/css/images/upload-icon1.png) no-repeat 0 -22px; }
.goods-edit .upload-tip{ font: 12px/23px "Microsoft YaHei"; color: #a3a3a3;vertical-align: top; }
.inputARea{overflow: hidden;line-height: 30px;padding:5px 0;}
.inputARea .title,.inputARea .value{float: left;}
.inputARea .title{width:103px;text-align: right;}
.inputARea .value{width:calc(100% - 103px);}
.inputARea input[type="checkbox"]{vertical-align: middle;}
.inputARea label{margin-right: 10px;}
\ No newline at end of file
/*
* jQuery文件上传插件,封装UI,上传处理操作采用Baidu WebUploader;
* @Author 黑爪爪;
*/
(function( $ ) {
$.fn.extend({
/*
* 上传方法 opt为参数配置;
* serverCallBack回调函数 每个文件上传至服务端后,服务端返回参数,无论成功失败都会调用 参数为服务器返回信息;
*/
diyUpload:function( opt, serverCallBack ) {
if ( typeof opt != "object" ) {
alert('参数错误!');
return;
}
var $fileInput = $(this);
var $fileInputId = $fileInput.attr('id');
//组装参数;
if( opt.url ) {
opt.server = opt.url;
delete opt.url;
}
if( opt.success ) {
var successCallBack = opt.success;
delete opt.success;
}
if( opt.error ) {
var errorCallBack = opt.error;
delete opt.error;
}
//迭代出默认配置
$.each( getOption( '#'+$fileInputId ),function( key, value ){
opt[ key ] = opt[ key ] || value;
});
if ( opt.buttonText ) {
opt['pick']['label'] = opt.buttonText;
delete opt.buttonText;
}
var webUploader = getUploader( opt );
if ( !WebUploader.Uploader.support() ) {
alert( ' 上传组件不支持您的浏览器!');
return false;
}
//绑定文件加入队列事件;
webUploader.on('fileQueued', function( file ) {
createBox( $fileInput, file ,webUploader);
});
//进度条事件
webUploader.on('uploadProgress',function( file, percentage ){
var $fileBox = $('#fileBox_'+file.id);
var $diyBar = $fileBox.find('.diyBar');
$diyBar.show();
percentage = percentage*100;
showDiyProgress( percentage.toFixed(2), $diyBar);
});
//全部上传结束后触发;
webUploader.on('uploadFinished', function(){
$fileInput.next('.parentFileBox').children('.diyButton').remove();
});
//绑定发送至服务端返回后触发事件;
webUploader.on('uploadAccept', function( object ,data ){
if ( serverCallBack ) serverCallBack( data );
});
//上传成功后触发事件;
webUploader.on('uploadSuccess',function( file, response ){
var $fileBox = $('#fileBox_'+file.id);
var $diyBar = $fileBox.find('.diyBar');
$fileBox.removeClass('diyUploadHover');
$diyBar.fadeOut( 1000 ,function(){
$fileBox.children('.diySuccess').show();
});
if ( successCallBack ) {
successCallBack( response );
}
});
//上传失败后触发事件;
webUploader.on('uploadError',function( file, reason ){
var $fileBox = $('#fileBox_'+file.id);
var $diyBar = $fileBox.find('.diyBar');
showDiyProgress( 0, $diyBar , '上传失败!' );
var err = '上传失败! 文件:'+file.name+' 错误码:'+reason;
if ( errorCallBack ) {
errorCallBack( err );
}
});
//选择文件错误触发事件;
webUploader.on('error', function( code ) {
var text = '';
switch( code ) {
case 'F_DUPLICATE' : text = '该文件已经被选择了!' ;
break;
case 'Q_EXCEED_NUM_LIMIT' : text = '上传文件数量超过限制!' ;
break;
case 'F_EXCEED_SIZE' : text = '文件大小超过限制!';
break;
case 'Q_EXCEED_SIZE_LIMIT' : text = '所有文件总大小超过限制!';
break;
case 'Q_TYPE_DENIED' : text = '文件类型不正确或者是空文件!';
break;
default : text = '未知错误!';
break;
}
alert( text );
});
return webUploader;
}
});
//Web Uploader默认配置;
function getOption(objId) {
/*
* 配置文件同webUploader一致,这里只给出默认配置.
* 具体参照:http://fex.baidu.com/webuploader/doc/index.html
*/
return {
//按钮容器;
pick:{
id:objId,
label:""
},
//类型限制;
accept:{
title:"Images",
extensions:"gif,jpg,jpeg,bmp,png",
mimeTypes:"image/*"
},
//配置生成缩略图的选项
thumb:{
width:160,
height:120,
// 图片质量,只有type为`image/jpeg`的时候才有效。
quality:90,
// 是否允许放大,如果想要生成小图的时候不失真,此选项应该设置为false.
allowMagnify:false,
// 是否允许裁剪。
crop:true,
// 为空的话则保留原有图片格式。
// 否则强制转换成指定的类型。
type:"image/jpeg"
},
//文件上传方式
method:"POST",
//服务器地址;
server:"",
//是否已二进制的流的方式发送文件,这样整个上传内容php://input都为文件内容
sendAsBinary:false,
// 开起分片上传。 thinkphp的上传类测试分片无效,图片丢失;
chunked:true,
// 分片大小
chunkSize:512 * 1024,
//最大上传的文件数量, 总文件大小,单个文件大小(单位字节);
fileNumLimit:50,
fileSizeLimit:500000 * 1024,
fileSingleSizeLimit:50000 * 1024,
};
}
//实例化Web Uploader
function getUploader( opt ) {
return new WebUploader.Uploader( opt );
}
//操作进度条;
function showDiyProgress( progress, $diyBar, text ) {
if ( progress >= 100 ) {
progress = progress + '%';
text = text || '上传完成';
} else {
progress = progress + '%';
text = text || progress;
}
var $diyProgress = $diyBar.find('.diyProgress');
$diyProgress.width( progress ).text( text );
}
//取消事件;
function removeLi ( $li ,file_id ,webUploader) {
webUploader.removeFile( file_id );
$li.remove();
if($(".upload-ul li").length<=4){
$(".upload-ul li.upload-pick").show();
}
}
//左移事件;
function leftLi ($leftli, $li) {
$li.insertBefore($leftli);
}
//右移事件;
function rightLi ($rightli, $li) {
$li.insertAfter($rightli);
}
var imgnum = 0;
//创建文件操作div;
function createBox( $fileInput, file, webUploader ) {
var file_id = file.id;
var num = file_id.substr(file_id.length-1);
if(num>3){
for(var i=0;i<4;i++){
if($('#imgflag'+i).val()=="2"){
file_id = file_id.substring(0,file_id.length-1)+i;
break;
}
}
}
var $parentFileBox = $fileInput.parents(".upload-ul");
var file_len=$parentFileBox.children(".diyUploadHover").length;
//添加子容器;
var li = '<li id="fileBox_'+file_id+'" class="diyUploadHover"> \
<div class="viewThumb">\
<input type="hidden">\
<div class="diyBar"> \
<div class="diyProgress">0%</div> \
</div> \
<p class="diyControl"><span class="diyLeft"><i></i></span><span class="diyCancel"><i></i></span><span class="diyRight"><i></i></span></p>\
</div> \
</li>';
$parentFileBox.prepend( li );
if($(".upload-ul li").length>=5){
$(".upload-ul li.upload-pick").hide();
}
var $fileBox = $parentFileBox.find('#fileBox_'+file_id);
//绑定取消事件;
var $diyCancel = $fileBox.find('.diyCancel').one('click',function(){
removeLi( $(this).parents('.diyUploadHover'), file_id, webUploader );
var num = file_id.substr(file_id.length-1);
$('#imgflag'+num).val("2");
$('#img'+num+'Str64').val("");
});
//绑定左移事件;
$fileBox.find('.diyLeft').one('click',function(){
leftLi($(this).parents('.diyUploadHover').prev(), $(this).parents('.diyUploadHover'));
});
//绑定右移事件;
$fileBox.find('.diyRight').one('click',function(){
rightLi($(this).parents('.diyUploadHover').next(), $(this).parents('.diyUploadHover') );
});
if ( file.type.split("/")[0] != 'image' ) {
var liClassName = getFileTypeClassName( file.name.split(".").pop() );
$fileBox.addClass(liClassName);
return;
}
//生成预览缩略图;
webUploader.makeThumb( file, function( error, dataSrc ) {
if ( !error ) {
$fileBox.find('.viewThumb').append('<img id="img_'+file_id+'" src="'+dataSrc+'" >');
var num = file_id.substr(file_id.length-1);
alert(num);
if(num<4){
$('#imgflag'+num).val("1");
$('#img'+num+'Str64').val(dataSrc);
}else{
for(var i=0;i<4;i++){
if($('#imgflag'+i).val()=="2"){
$('#imgflag'+i).val("1");
$('#img'+i+'Str64').val(dataSrc);
break;
}
}
}
}
});
}
//获取文件类型;
function getFileTypeClassName ( type ) {
var fileType = {};
var suffix = '_diy_bg';
fileType['pdf'] = 'pdf';
fileType['ppt'] = 'ppt';
fileType['doc'] = 'doc';
fileType['docx'] = 'doc';
fileType['jpg'] = 'jpg';
fileType['zip'] = 'zip';
fileType['rar'] = 'rar';
fileType['xls'] = 'xls';
fileType['xlsx'] = 'xls';
fileType['txt'] = 'txt';
fileType = fileType[type] || 'ppt';
return fileType+suffix;
}
})( jQuery );
\ No newline at end of file
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
/* WebUploader 0.1.5 */!function(a,b){var c,d={},e=function(a,b){var c,d,e;if("string"==typeof a)return h(a);for(c=[],d=a.length,e=0;d>e;e++)c.push(h(a[e]));return b.apply(null,c)},f=function(a,b,c){2===arguments.length&&(c=b,b=null),e(b||[],function(){g(a,c,arguments)})},g=function(a,b,c){var f,g={exports:b};"function"==typeof b&&(c.length||(c=[e,g.exports,g]),f=b.apply(null,c),void 0!==f&&(g.exports=f)),d[a]=g.exports},h=function(b){var c=d[b]||a[b];if(!c)throw new Error("`"+b+"` is undefined");return c},i=function(a){var b,c,e,f,g,h;h=function(a){return a&&a.charAt(0).toUpperCase()+a.substr(1)};for(b in d)if(c=a,d.hasOwnProperty(b)){for(e=b.split("/"),g=h(e.pop());f=h(e.shift());)c[f]=c[f]||{},c=c[f];c[g]=d[b]}return a},j=function(c){return a.__dollar=c,i(b(a,f,e))};"object"==typeof module&&"object"==typeof module.exports?module.exports=j():"function"==typeof define&&define.amd?define(["jquery"],j):(c=a.WebUploader,a.WebUploader=j(),a.WebUploader.noConflict=function(){a.WebUploader=c})}(window,function(a,b,c){return b("dollar-third",[],function(){var b=a.__dollar||a.jQuery||a.Zepto;if(!b)throw new Error("jQuery or Zepto not found!");return b}),b("dollar",["dollar-third"],function(a){return a}),b("promise-third",["dollar"],function(a){return{Deferred:a.Deferred,when:a.when,isPromise:function(a){return a&&"function"==typeof a.then}}}),b("promise",["promise-third"],function(a){return a}),b("base",["dollar","promise"],function(b,c){function d(a){return function(){return h.apply(a,arguments)}}function e(a,b){return function(){return a.apply(b,arguments)}}function f(a){var b;return Object.create?Object.create(a):(b=function(){},b.prototype=a,new b)}var g=function(){},h=Function.call;return{version:"0.1.5",$:b,Deferred:c.Deferred,isPromise:c.isPromise,when:c.when,browser:function(a){var b={},c=a.match(/WebKit\/([\d.]+)/),d=a.match(/Chrome\/([\d.]+)/)||a.match(/CriOS\/([\d.]+)/),e=a.match(/MSIE\s([\d\.]+)/)||a.match(/(?:trident)(?:.*rv:([\w.]+))?/i),f=a.match(/Firefox\/([\d.]+)/),g=a.match(/Safari\/([\d.]+)/),h=a.match(/OPR\/([\d.]+)/);return c&&(b.webkit=parseFloat(c[1])),d&&(b.chrome=parseFloat(d[1])),e&&(b.ie=parseFloat(e[1])),f&&(b.firefox=parseFloat(f[1])),g&&(b.safari=parseFloat(g[1])),h&&(b.opera=parseFloat(h[1])),b}(navigator.userAgent),os:function(a){var b={},c=a.match(/(?:Android);?[\s\/]+([\d.]+)?/),d=a.match(/(?:iPad|iPod|iPhone).*OS\s([\d_]+)/);return c&&(b.android=parseFloat(c[1])),d&&(b.ios=parseFloat(d[1].replace(/_/g,"."))),b}(navigator.userAgent),inherits:function(a,c,d){var e;return"function"==typeof c?(e=c,c=null):e=c&&c.hasOwnProperty("constructor")?c.constructor:function(){return a.apply(this,arguments)},b.extend(!0,e,a,d||{}),e.__super__=a.prototype,e.prototype=f(a.prototype),c&&b.extend(!0,e.prototype,c),e},noop:g,bindFn:e,log:function(){return a.console?e(console.log,console):g}(),nextTick:function(){return function(a){setTimeout(a,1)}}(),slice:d([].slice),guid:function(){var a=0;return function(b){for(var c=(+new Date).toString(32),d=0;5>d;d++)c+=Math.floor(65535*Math.random()).toString(32);return(b||"wu_")+c+(a++).toString(32)}}(),formatSize:function(a,b,c){var d;for(c=c||["B","K","M","G","TB"];(d=c.shift())&&a>1024;)a/=1024;return("B"===d?a:a.toFixed(b||2))+d}}}),b("mediator",["base"],function(a){function b(a,b,c,d){return f.grep(a,function(a){return!(!a||b&&a.e!==b||c&&a.cb!==c&&a.cb._cb!==c||d&&a.ctx!==d)})}function c(a,b,c){f.each((a||"").split(h),function(a,d){c(d,b)})}function d(a,b){for(var c,d=!1,e=-1,f=a.length;++e<f;)if(c=a[e],c.cb.apply(c.ctx2,b)===!1){d=!0;break}return!d}var e,f=a.$,g=[].slice,h=/\s+/;return e={on:function(a,b,d){var e,f=this;return b?(e=this._events||(this._events=[]),c(a,b,function(a,b){var c={e:a};c.cb=b,c.ctx=d,c.ctx2=d||f,c.id=e.length,e.push(c)}),this):this},once:function(a,b,d){var e=this;return b?(c(a,b,function(a,b){var c=function(){return e.off(a,c),b.apply(d||e,arguments)};c._cb=b,e.on(a,c,d)}),e):e},off:function(a,d,e){var g=this._events;return g?a||d||e?(c(a,d,function(a,c){f.each(b(g,a,c,e),function(){delete g[this.id]})}),this):(this._events=[],this):this},trigger:function(a){var c,e,f;return this._events&&a?(c=g.call(arguments,1),e=b(this._events,a),f=b(this._events,"all"),d(e,c)&&d(f,arguments)):this}},f.extend({installTo:function(a){return f.extend(a,e)}},e)}),b("uploader",["base","mediator"],function(a,b){function c(a){this.options=d.extend(!0,{},c.options,a),this._init(this.options)}var d=a.$;return c.options={},b.installTo(c.prototype),d.each({upload:"start-upload",stop:"stop-upload",getFile:"get-file",getFiles:"get-files",addFile:"add-file",addFiles:"add-file",sort:"sort-files",removeFile:"remove-file",cancelFile:"cancel-file",skipFile:"skip-file",retry:"retry",isInProgress:"is-in-progress",makeThumb:"make-thumb",md5File:"md5-file",getDimension:"get-dimension",addButton:"add-btn",predictRuntimeType:"predict-runtime-type",refresh:"refresh",disable:"disable",enable:"enable",reset:"reset"},function(a,b){c.prototype[a]=function(){return this.request(b,arguments)}}),d.extend(c.prototype,{state:"pending",_init:function(a){var b=this;b.request("init",a,function(){b.state="ready",b.trigger("ready")})},option:function(a,b){var c=this.options;return arguments.length>1?void(d.isPlainObject(b)&&d.isPlainObject(c[a])?d.extend(c[a],b):c[a]=b):a?c[a]:c},getStats:function(){var a=this.request("get-stats");return a?{successNum:a.numOfSuccess,progressNum:a.numOfProgress,cancelNum:a.numOfCancel,invalidNum:a.numOfInvalid,uploadFailNum:a.numOfUploadFailed,queueNum:a.numOfQueue,interruptNum:a.numofInterrupt}:{}},trigger:function(a){var c=[].slice.call(arguments,1),e=this.options,f="on"+a.substring(0,1).toUpperCase()+a.substring(1);return b.trigger.apply(this,arguments)===!1||d.isFunction(e[f])&&e[f].apply(this,c)===!1||d.isFunction(this[f])&&this[f].apply(this,c)===!1||b.trigger.apply(b,[this,a].concat(c))===!1?!1:!0},destroy:function(){this.request("destroy",arguments),this.off()},request:a.noop}),a.create=c.create=function(a){return new c(a)},a.Uploader=c,c}),b("runtime/runtime",["base","mediator"],function(a,b){function c(b){this.options=d.extend({container:document.body},b),this.uid=a.guid("rt_")}var d=a.$,e={},f=function(a){for(var b in a)if(a.hasOwnProperty(b))return b;return null};return d.extend(c.prototype,{getContainer:function(){var a,b,c=this.options;return this._container?this._container:(a=d(c.container||document.body),b=d(document.createElement("div")),b.attr("id","rt_"+this.uid),b.css({position:"absolute",top:"0px",left:"0px",width:"1px",height:"1px",overflow:"hidden"}),a.append(b),a.addClass("webuploader-container"),this._container=b,this._parent=a,b)},init:a.noop,exec:a.noop,destroy:function(){this._container&&this._container.remove(),this._parent&&this._parent.removeClass("webuploader-container"),this.off()}}),c.orders="html5,flash",c.addRuntime=function(a,b){e[a]=b},c.hasRuntime=function(a){return!!(a?e[a]:f(e))},c.create=function(a,b){var g,h;if(b=b||c.orders,d.each(b.split(/\s*,\s*/g),function(){return e[this]?(g=this,!1):void 0}),g=g||f(e),!g)throw new Error("Runtime Error");return h=new e[g](a)},b.installTo(c.prototype),c}),b("runtime/client",["base","mediator","runtime/runtime"],function(a,b,c){function d(b,d){var f,g=a.Deferred();this.uid=a.guid("client_"),this.runtimeReady=function(a){return g.done(a)},this.connectRuntime=function(b,h){if(f)throw new Error("already connected!");return g.done(h),"string"==typeof b&&e.get(b)&&(f=e.get(b)),f=f||e.get(null,d),f?(a.$.extend(f.options,b),f.__promise.then(g.resolve),f.__client++):(f=c.create(b,b.runtimeOrder),f.__promise=g.promise(),f.once("ready",g.resolve),f.init(),e.add(f),f.__client=1),d&&(f.__standalone=d),f},this.getRuntime=function(){return f},this.disconnectRuntime=function(){f&&(f.__client--,f.__client<=0&&(e.remove(f),delete f.__promise,f.destroy()),f=null)},this.exec=function(){if(f){var c=a.slice(arguments);return b&&c.unshift(b),f.exec.apply(this,c)}},this.getRuid=function(){return f&&f.uid},this.destroy=function(a){return function(){a&&a.apply(this,arguments),this.trigger("destroy"),this.off(),this.exec("destroy"),this.disconnectRuntime()}}(this.destroy)}var e;return e=function(){var a={};return{add:function(b){a[b.uid]=b},get:function(b,c){var d;if(b)return a[b];for(d in a)if(!c||!a[d].__standalone)return a[d];return null},remove:function(b){delete a[b.uid]}}}(),b.installTo(d.prototype),d}),b("lib/dnd",["base","mediator","runtime/client"],function(a,b,c){function d(a){a=this.options=e.extend({},d.options,a),a.container=e(a.container),a.container.length&&c.call(this,"DragAndDrop")}var e=a.$;return d.options={accept:null,disableGlobalDnd:!1},a.inherits(c,{constructor:d,init:function(){var a=this;a.connectRuntime(a.options,function(){a.exec("init"),a.trigger("ready")})}}),b.installTo(d.prototype),d}),b("widgets/widget",["base","uploader"],function(a,b){function c(a){if(!a)return!1;var b=a.length,c=e.type(a);return 1===a.nodeType&&b?!0:"array"===c||"function"!==c&&"string"!==c&&(0===b||"number"==typeof b&&b>0&&b-1 in a)}function d(a){this.owner=a,this.options=a.options}var e=a.$,f=b.prototype._init,g=b.prototype.destroy,h={},i=[];return e.extend(d.prototype,{init:a.noop,invoke:function(a,b){var c=this.responseMap;return c&&a in c&&c[a]in this&&e.isFunction(this[c[a]])?this[c[a]].apply(this,b):h},request:function(){return this.owner.request.apply(this.owner,arguments)}}),e.extend(b.prototype,{_init:function(){var a=this,b=a._widgets=[],c=a.options.disableWidgets||"";return e.each(i,function(d,e){(!c||!~c.indexOf(e._name))&&b.push(new e(a))}),f.apply(a,arguments)},request:function(b,d,e){var f,g,i,j,k=0,l=this._widgets,m=l&&l.length,n=[],o=[];for(d=c(d)?d:[d];m>k;k++)f=l[k],g=f.invoke(b,d),g!==h&&(a.isPromise(g)?o.push(g):n.push(g));return e||o.length?(i=a.when.apply(a,o),j=i.pipe?"pipe":"then",i[j](function(){var b=a.Deferred(),c=arguments;return 1===c.length&&(c=c[0]),setTimeout(function(){b.resolve(c)},1),b.promise()})[e?j:"done"](e||a.noop)):n[0]},destroy:function(){g.apply(this,arguments),this._widgets=null}}),b.register=d.register=function(b,c){var f,g={init:"init",destroy:"destroy",name:"anonymous"};return 1===arguments.length?(c=b,e.each(c,function(a){return"_"===a[0]||"name"===a?void("name"===a&&(g.name=c.name)):void(g[a.replace(/[A-Z]/g,"-$&").toLowerCase()]=a)})):g=e.extend(g,b),c.responseMap=g,f=a.inherits(d,c),f._name=g.name,i.push(f),f},b.unRegister=d.unRegister=function(a){if(a&&"anonymous"!==a)for(var b=i.length;b--;)i[b]._name===a&&i.splice(b,1)},d}),b("widgets/filednd",["base","uploader","lib/dnd","widgets/widget"],function(a,b,c){var d=a.$;return b.options.dnd="",b.register({name:"dnd",init:function(b){if(b.dnd&&"html5"===this.request("predict-runtime-type")){var e,f=this,g=a.Deferred(),h=d.extend({},{disableGlobalDnd:b.disableGlobalDnd,container:b.dnd,accept:b.accept});return this.dnd=e=new c(h),e.once("ready",g.resolve),e.on("drop",function(a){f.request("add-file",[a])}),e.on("accept",function(a){return f.owner.trigger("dndAccept",a)}),e.init(),g.promise()}},destroy:function(){this.dnd&&this.dnd.destroy()}})}),b("lib/filepaste",["base","mediator","runtime/client"],function(a,b,c){function d(a){a=this.options=e.extend({},a),a.container=e(a.container||document.body),c.call(this,"FilePaste")}var e=a.$;return a.inherits(c,{constructor:d,init:function(){var a=this;a.connectRuntime(a.options,function(){a.exec("init"),a.trigger("ready")})}}),b.installTo(d.prototype),d}),b("widgets/filepaste",["base","uploader","lib/filepaste","widgets/widget"],function(a,b,c){var d=a.$;return b.register({name:"paste",init:function(b){if(b.paste&&"html5"===this.request("predict-runtime-type")){var e,f=this,g=a.Deferred(),h=d.extend({},{container:b.paste,accept:b.accept});return this.paste=e=new c(h),e.once("ready",g.resolve),e.on("paste",function(a){f.owner.request("add-file",[a])}),e.init(),g.promise()}},destroy:function(){this.paste&&this.paste.destroy()}})}),b("lib/blob",["base","runtime/client"],function(a,b){function c(a,c){var d=this;d.source=c,d.ruid=a,this.size=c.size||0,this.type=!c.type&&this.ext&&~"jpg,jpeg,png,gif,bmp".indexOf(this.ext)?"image/"+("jpg"===this.ext?"jpeg":this.ext):c.type||"application/octet-stream",b.call(d,"Blob"),this.uid=c.uid||this.uid,a&&d.connectRuntime(a)}return a.inherits(b,{constructor:c,slice:function(a,b){return this.exec("slice",a,b)},getSource:function(){return this.source}}),c}),b("lib/file",["base","lib/blob"],function(a,b){function c(a,c){var f;this.name=c.name||"untitled"+d++,f=e.exec(c.name)?RegExp.$1.toLowerCase():"",!f&&c.type&&(f=/\/(jpg|jpeg|png|gif|bmp)$/i.exec(c.type)?RegExp.$1.toLowerCase():"",this.name+="."+f),this.ext=f,this.lastModifiedDate=c.lastModifiedDate||(new Date).toLocaleString(),b.apply(this,arguments)}var d=1,e=/\.([^.]+)$/;return a.inherits(b,c)}),b("lib/filepicker",["base","runtime/client","lib/file"],function(b,c,d){function e(a){if(a=this.options=f.extend({},e.options,a),a.container=f(a.id),!a.container.length)throw new Error("按钮指定错误");a.innerHTML=a.innerHTML||a.label||a.container.html()||"",a.button=f(a.button||document.createElement("div")),a.button.html(a.innerHTML),a.container.html(a.button),c.call(this,"FilePicker",!0)}var f=b.$;return e.options={button:null,container:null,label:null,innerHTML:null,multiple:!0,accept:null,name:"file"},b.inherits(c,{constructor:e,init:function(){var c=this,e=c.options,g=e.button;g.addClass("webuploader-pick"),c.on("all",function(a){var b;switch(a){case"mouseenter":g.addClass("webuploader-pick-hover");break;case"mouseleave":g.removeClass("webuploader-pick-hover");break;case"change":b=c.exec("getFiles"),c.trigger("select",f.map(b,function(a){return a=new d(c.getRuid(),a),a._refer=e.container,a}),e.container)}}),c.connectRuntime(e,function(){c.refresh(),c.exec("init",e),c.trigger("ready")}),this._resizeHandler=b.bindFn(this.refresh,this),f(a).on("resize",this._resizeHandler)},refresh:function(){var a=this.getRuntime().getContainer(),b=this.options.button,c=b.outerWidth?b.outerWidth():b.width(),d=b.outerHeight?b.outerHeight():b.height(),e=b.offset();c&&d&&a.css({bottom:"auto",right:"auto",width:c+"px",height:d+"px"}).offset(e)},enable:function(){var a=this.options.button;a.removeClass("webuploader-pick-disable"),this.refresh()},disable:function(){var a=this.options.button;this.getRuntime().getContainer().css({top:"-99999px"}),a.addClass("webuploader-pick-disable")},destroy:function(){var b=this.options.button;f(a).off("resize",this._resizeHandler),b.removeClass("webuploader-pick-disable webuploader-pick-hover webuploader-pick")}}),e}),b("widgets/filepicker",["base","uploader","lib/filepicker","widgets/widget"],function(a,b,c){var d=a.$;return d.extend(b.options,{pick:null,accept:null}),b.register({name:"picker",init:function(a){return this.pickers=[],a.pick&&this.addBtn(a.pick)},refresh:function(){d.each(this.pickers,function(){this.refresh()})},addBtn:function(b){var e=this,f=e.options,g=f.accept,h=[];if(b)return d.isPlainObject(b)||(b={id:b}),d(b.id).each(function(){var i,j,k;k=a.Deferred(),i=d.extend({},b,{accept:d.isPlainObject(g)?[g]:g,swf:f.swf,runtimeOrder:f.runtimeOrder,id:this}),j=new c(i),j.once("ready",k.resolve),j.on("select",function(a){e.owner.request("add-file",[a])}),j.init(),e.pickers.push(j),h.push(k.promise())}),a.when.apply(a,h)},disable:function(){d.each(this.pickers,function(){this.disable()})},enable:function(){d.each(this.pickers,function(){this.enable()})},destroy:function(){d.each(this.pickers,function(){this.destroy()}),this.pickers=null}})}),b("lib/image",["base","runtime/client","lib/blob"],function(a,b,c){function d(a){this.options=e.extend({},d.options,a),b.call(this,"Image"),this.on("load",function(){this._info=this.exec("info"),this._meta=this.exec("meta")})}var e=a.$;return d.options={quality:90,crop:!1,preserveHeaders:!1,allowMagnify:!1},a.inherits(b,{constructor:d,info:function(a){return a?(this._info=a,this):this._info},meta:function(a){return a?(this._meta=a,this):this._meta},loadFromBlob:function(a){var b=this,c=a.getRuid();this.connectRuntime(c,function(){b.exec("init",b.options),b.exec("loadFromBlob",a)})},resize:function(){var b=a.slice(arguments);return this.exec.apply(this,["resize"].concat(b))},crop:function(){var b=a.slice(arguments);return this.exec.apply(this,["crop"].concat(b))},getAsDataUrl:function(a){return this.exec("getAsDataUrl",a)},getAsBlob:function(a){var b=this.exec("getAsBlob",a);return new c(this.getRuid(),b)}}),d}),b("widgets/image",["base","uploader","lib/image","widgets/widget"],function(a,b,c){var d,e=a.$;return d=function(a){var b=0,c=[],d=function(){for(var d;c.length&&a>b;)d=c.shift(),b+=d[0],d[1]()};return function(a,e,f){c.push([e,f]),a.once("destroy",function(){b-=e,setTimeout(d,1)}),setTimeout(d,1)}}(5242880),e.extend(b.options,{thumb:{width:110,height:110,quality:70,allowMagnify:!0,crop:!0,preserveHeaders:!1,type:"image/jpeg"},compress:{width:1600,height:1600,quality:90,allowMagnify:!1,crop:!1,preserveHeaders:!0}}),b.register({name:"image",makeThumb:function(a,b,f,g){var h,i;return a=this.request("get-file",a),a.type.match(/^image/)?(h=e.extend({},this.options.thumb),e.isPlainObject(f)&&(h=e.extend(h,f),f=null),f=f||h.width,g=g||h.height,i=new c(h),i.once("load",function(){a._info=a._info||i.info(),a._meta=a._meta||i.meta(),1>=f&&f>0&&(f=a._info.width*f),1>=g&&g>0&&(g=a._info.height*g),i.resize(f,g)}),i.once("complete",function(){b(!1,i.getAsDataUrl(h.type)),i.destroy()}),i.once("error",function(a){b(a||!0),i.destroy()}),void d(i,a.source.size,function(){a._info&&i.info(a._info),a._meta&&i.meta(a._meta),i.loadFromBlob(a.source)})):void b(!0)},beforeSendFile:function(b){var d,f,g=this.options.compress||this.options.resize,h=g&&g.compressSize||0,i=g&&g.noCompressIfLarger||!1;return b=this.request("get-file",b),!g||!~"image/jpeg,image/jpg".indexOf(b.type)||b.size<h||b._compressed?void 0:(g=e.extend({},g),f=a.Deferred(),d=new c(g),f.always(function(){d.destroy(),d=null}),d.once("error",f.reject),d.once("load",function(){var a=g.width,c=g.height;b._info=b._info||d.info(),b._meta=b._meta||d.meta(),1>=a&&a>0&&(a=b._info.width*a),1>=c&&c>0&&(c=b._info.height*c),d.resize(a,c)}),d.once("complete",function(){var a,c;try{a=d.getAsBlob(g.type),c=b.size,(!i||a.size<c)&&(b.source=a,b.size=a.size,b.trigger("resize",a.size,c)),b._compressed=!0,f.resolve()}catch(e){f.resolve()}}),b._info&&d.info(b._info),b._meta&&d.meta(b._meta),d.loadFromBlob(b.source),f.promise())}})}),b("file",["base","mediator"],function(a,b){function c(){return f+g++}function d(a){this.name=a.name||"Untitled",this.size=a.size||0,this.type=a.type||"application/octet-stream",this.lastModifiedDate=a.lastModifiedDate||1*new Date,this.id=c(),this.ext=h.exec(this.name)?RegExp.$1:"",this.statusText="",i[this.id]=d.Status.INITED,this.source=a,this.loaded=0,this.on("error",function(a){this.setStatus(d.Status.ERROR,a)})}var e=a.$,f="WU_FILE_",g=0,h=/\.([^.]+)$/,i={};return e.extend(d.prototype,{setStatus:function(a,b){var c=i[this.id];"undefined"!=typeof b&&(this.statusText=b),a!==c&&(i[this.id]=a,this.trigger("statuschange",a,c))},getStatus:function(){return i[this.id]},getSource:function(){return this.source},destroy:function(){this.off(),delete i[this.id]}}),b.installTo(d.prototype),d.Status={INITED:"inited",QUEUED:"queued",PROGRESS:"progress",ERROR:"error",COMPLETE:"complete",CANCELLED:"cancelled",INTERRUPT:"interrupt",INVALID:"invalid"},d}),b("queue",["base","mediator","file"],function(a,b,c){function d(){this.stats={numOfQueue:0,numOfSuccess:0,numOfCancel:0,numOfProgress:0,numOfUploadFailed:0,numOfInvalid:0,numofDeleted:0,numofInterrupt:0},this._queue=[],this._map={}}var e=a.$,f=c.Status;return e.extend(d.prototype,{append:function(a){return this._queue.push(a),this._fileAdded(a),this},prepend:function(a){return this._queue.unshift(a),this._fileAdded(a),this},getFile:function(a){return"string"!=typeof a?a:this._map[a]},fetch:function(a){var b,c,d=this._queue.length;for(a=a||f.QUEUED,b=0;d>b;b++)if(c=this._queue[b],a===c.getStatus())return c;return null},sort:function(a){"function"==typeof a&&this._queue.sort(a)},getFiles:function(){for(var a,b=[].slice.call(arguments,0),c=[],d=0,f=this._queue.length;f>d;d++)a=this._queue[d],(!b.length||~e.inArray(a.getStatus(),b))&&c.push(a);return c},removeFile:function(a){var b=this._map[a.id];b&&(delete this._map[a.id],a.destroy(),this.stats.numofDeleted++)},_fileAdded:function(a){var b=this,c=this._map[a.id];c||(this._map[a.id]=a,a.on("statuschange",function(a,c){b._onFileStatusChange(a,c)}))},_onFileStatusChange:function(a,b){var c=this.stats;switch(b){case f.PROGRESS:c.numOfProgress--;break;case f.QUEUED:c.numOfQueue--;break;case f.ERROR:c.numOfUploadFailed--;break;case f.INVALID:c.numOfInvalid--;break;case f.INTERRUPT:c.numofInterrupt--}switch(a){case f.QUEUED:c.numOfQueue++;break;case f.PROGRESS:c.numOfProgress++;break;case f.ERROR:c.numOfUploadFailed++;break;case f.COMPLETE:c.numOfSuccess++;break;case f.CANCELLED:c.numOfCancel++;break;case f.INVALID:c.numOfInvalid++;break;case f.INTERRUPT:c.numofInterrupt++}}}),b.installTo(d.prototype),d}),b("widgets/queue",["base","uploader","queue","file","lib/file","runtime/client","widgets/widget"],function(a,b,c,d,e,f){var g=a.$,h=/\.\w+$/,i=d.Status;return b.register({name:"queue",init:function(b){var d,e,h,i,j,k,l,m=this;if(g.isPlainObject(b.accept)&&(b.accept=[b.accept]),b.accept){for(j=[],h=0,e=b.accept.length;e>h;h++)i=b.accept[h].extensions,i&&j.push(i);j.length&&(k="\\."+j.join(",").replace(/,/g,"$|\\.").replace(/\*/g,".*")+"$"),m.accept=new RegExp(k,"i")}return m.queue=new c,m.stats=m.queue.stats,"html5"===this.request("predict-runtime-type")?(d=a.Deferred(),this.placeholder=l=new f("Placeholder"),l.connectRuntime({runtimeOrder:"html5"},function(){m._ruid=l.getRuid(),d.resolve()}),d.promise()):void 0},_wrapFile:function(a){if(!(a instanceof d)){if(!(a instanceof e)){if(!this._ruid)throw new Error("Can't add external files.");a=new e(this._ruid,a)}a=new d(a)}return a},acceptFile:function(a){var b=!a||!a.size||this.accept&&h.exec(a.name)&&!this.accept.test(a.name);return!b},_addFile:function(a){var b=this;return a=b._wrapFile(a),b.owner.trigger("beforeFileQueued",a)?b.acceptFile(a)?(b.queue.append(a),b.owner.trigger("fileQueued",a),a):void b.owner.trigger("error","Q_TYPE_DENIED",a):void 0},getFile:function(a){return this.queue.getFile(a)},addFile:function(a){var b=this;a.length||(a=[a]),a=g.map(a,function(a){return b._addFile(a)}),b.owner.trigger("filesQueued",a),b.options.auto&&setTimeout(function(){b.request("start-upload")},20)},getStats:function(){return this.stats},removeFile:function(a,b){var c=this;a=a.id?a:c.queue.getFile(a),this.request("cancel-file",a),b&&this.queue.removeFile(a)},getFiles:function(){return this.queue.getFiles.apply(this.queue,arguments)},fetchFile:function(){return this.queue.fetch.apply(this.queue,arguments)},retry:function(a,b){var c,d,e,f=this;if(a)return a=a.id?a:f.queue.getFile(a),a.setStatus(i.QUEUED),void(b||f.request("start-upload"));for(c=f.queue.getFiles(i.ERROR),d=0,e=c.length;e>d;d++)a=c[d],a.setStatus(i.QUEUED);f.request("start-upload")},sortFiles:function(){return this.queue.sort.apply(this.queue,arguments)},reset:function(){this.owner.trigger("reset"),this.queue=new c,this.stats=this.queue.stats},destroy:function(){this.reset(),this.placeholder&&this.placeholder.destroy()}})}),b("widgets/runtime",["uploader","runtime/runtime","widgets/widget"],function(a,b){return a.support=function(){return b.hasRuntime.apply(b,arguments)},a.register({name:"runtime",init:function(){if(!this.predictRuntimeType())throw Error("Runtime Error")},predictRuntimeType:function(){var a,c,d=this.options.runtimeOrder||b.orders,e=this.type;if(!e)for(d=d.split(/\s*,\s*/g),a=0,c=d.length;c>a;a++)if(b.hasRuntime(d[a])){this.type=e=d[a];break}return e}})}),b("lib/transport",["base","runtime/client","mediator"],function(a,b,c){function d(a){var c=this;a=c.options=e.extend(!0,{},d.options,a||{}),b.call(this,"Transport"),this._blob=null,this._formData=a.formData||{},this._headers=a.headers||{},this.on("progress",this._timeout),this.on("load error",function(){c.trigger("progress",1),clearTimeout(c._timer)})}var e=a.$;return d.options={server:"",method:"POST",withCredentials:!1,fileVal:"file",timeout:12e4,formData:{},headers:{},sendAsBinary:!1},e.extend(d.prototype,{appendBlob:function(a,b,c){var d=this,e=d.options;d.getRuid()&&d.disconnectRuntime(),d.connectRuntime(b.ruid,function(){d.exec("init")}),d._blob=b,e.fileVal=a||e.fileVal,e.filename=c||e.filename},append:function(a,b){"object"==typeof a?e.extend(this._formData,a):this._formData[a]=b},setRequestHeader:function(a,b){"object"==typeof a?e.extend(this._headers,a):this._headers[a]=b},send:function(a){this.exec("send",a),this._timeout()},abort:function(){return clearTimeout(this._timer),this.exec("abort")},destroy:function(){this.trigger("destroy"),this.off(),this.exec("destroy"),this.disconnectRuntime()},getResponse:function(){return this.exec("getResponse")},getResponseAsJson:function(){return this.exec("getResponseAsJson")},getStatus:function(){return this.exec("getStatus")},_timeout:function(){var a=this,b=a.options.timeout;b&&(clearTimeout(a._timer),a._timer=setTimeout(function(){a.abort(),a.trigger("error","timeout")},b))}}),c.installTo(d.prototype),d}),b("widgets/upload",["base","uploader","file","lib/transport","widgets/widget"],function(a,b,c,d){function e(a,b){var c,d,e=[],f=a.source,g=f.size,h=b?Math.ceil(g/b):1,i=0,j=0;for(d={file:a,has:function(){return!!e.length},shift:function(){return e.shift()},unshift:function(a){e.unshift(a)}};h>j;)c=Math.min(b,g-i),e.push({file:a,start:i,end:b?i+c:g,total:g,chunks:h,chunk:j++,cuted:d}),i+=c;return a.blocks=e.concat(),a.remaning=e.length,d}var f=a.$,g=a.isPromise,h=c.Status;f.extend(b.options,{prepareNextFile:!1,chunked:!1,chunkSize:5242880,chunkRetry:2,threads:3,formData:{}}),b.register({name:"upload",init:function(){var b=this.owner,c=this;this.runing=!1,this.progress=!1,b.on("startUpload",function(){c.progress=!0}).on("uploadFinished",function(){c.progress=!1}),this.pool=[],this.stack=[],this.pending=[],this.remaning=0,this.__tick=a.bindFn(this._tick,this),b.on("uploadComplete",function(a){a.blocks&&f.each(a.blocks,function(a,b){b.transport&&(b.transport.abort(),b.transport.destroy()),delete b.transport}),delete a.blocks,delete a.remaning})},reset:function(){this.request("stop-upload",!0),this.runing=!1,this.pool=[],this.stack=[],this.pending=[],this.remaning=0,this._trigged=!1,this._promise=null},startUpload:function(b){var c=this;if(f.each(c.request("get-files",h.INVALID),function(){c.request("remove-file",this)}),b)if(b=b.id?b:c.request("get-file",b),b.getStatus()===h.INTERRUPT)f.each(c.pool,function(a,c){c.file===b&&c.transport&&c.transport.send()}),b.setStatus(h.QUEUED);else{if(b.getStatus()===h.PROGRESS)return;b.setStatus(h.QUEUED)}else f.each(c.request("get-files",[h.INITED]),function(){this.setStatus(h.QUEUED)});if(!c.runing){c.runing=!0;var d=[];f.each(c.pool,function(a,b){var e=b.file;e.getStatus()===h.INTERRUPT&&(d.push(e),c._trigged=!1,b.transport&&b.transport.send())});for(var b;b=d.shift();)b.setStatus(h.PROGRESS);b||f.each(c.request("get-files",h.INTERRUPT),function(){this.setStatus(h.PROGRESS)}),c._trigged=!1,a.nextTick(c.__tick),c.owner.trigger("startUpload")}},stopUpload:function(b,c){var d=this;if(b===!0&&(c=b,b=null),d.runing!==!1){if(b){if(b=b.id?b:d.request("get-file",b),b.getStatus()!==h.PROGRESS&&b.getStatus()!==h.QUEUED)return;return b.setStatus(h.INTERRUPT),f.each(d.pool,function(a,c){c.file===b&&(c.transport&&c.transport.abort(),d._putback(c),d._popBlock(c))}),a.nextTick(d.__tick)}d.runing=!1,this._promise&&this._promise.file&&this._promise.file.setStatus(h.INTERRUPT),c&&f.each(d.pool,function(a,b){b.transport&&b.transport.abort(),b.file.setStatus(h.INTERRUPT)}),d.owner.trigger("stopUpload")}},cancelFile:function(a){a=a.id?a:this.request("get-file",a),a.blocks&&f.each(a.blocks,function(a,b){var c=b.transport;c&&(c.abort(),c.destroy(),delete b.transport)}),a.setStatus(h.CANCELLED),this.owner.trigger("fileDequeued",a)},isInProgress:function(){return!!this.progress},_getStats:function(){return this.request("get-stats")},skipFile:function(a,b){a=a.id?a:this.request("get-file",a),a.setStatus(b||h.COMPLETE),a.skipped=!0,a.blocks&&f.each(a.blocks,function(a,b){var c=b.transport;c&&(c.abort(),c.destroy(),delete b.transport)}),this.owner.trigger("uploadSkip",a)},_tick:function(){var b,c,d=this,e=d.options;return d._promise?d._promise.always(d.__tick):void(d.pool.length<e.threads&&(c=d._nextBlock())?(d._trigged=!1,b=function(b){d._promise=null,b&&b.file&&d._startSend(b),a.nextTick(d.__tick)},d._promise=g(c)?c.always(b):b(c)):d.remaning||d._getStats().numOfQueue||d._getStats().numofInterrupt||(d.runing=!1,d._trigged||a.nextTick(function(){d.owner.trigger("uploadFinished")}),d._trigged=!0))},_putback:function(a){var b;a.cuted.unshift(a),b=this.stack.indexOf(a.cuted),~b||this.stack.unshift(a.cuted)},_getStack:function(){for(var a,b=0;a=this.stack[b++];){if(a.has()&&a.file.getStatus()===h.PROGRESS)return a;(!a.has()||a.file.getStatus()!==h.PROGRESS&&a.file.getStatus()!==h.INTERRUPT)&&this.stack.splice(--b,1)}return null},_nextBlock:function(){var a,b,c,d,f=this,h=f.options;return(a=this._getStack())?(h.prepareNextFile&&!f.pending.length&&f._prepareNextFile(),a.shift()):f.runing?(!f.pending.length&&f._getStats().numOfQueue&&f._prepareNextFile(),b=f.pending.shift(),c=function(b){return b?(a=e(b,h.chunked?h.chunkSize:0),f.stack.push(a),a.shift()):null},g(b)?(d=b.file,b=b[b.pipe?"pipe":"then"](c),b.file=d,b):c(b)):void 0},_prepareNextFile:function(){var a,b=this,c=b.request("fetch-file"),d=b.pending;c&&(a=b.request("before-send-file",c,function(){return c.getStatus()===h.PROGRESS||c.getStatus()===h.INTERRUPT?c:b._finishFile(c)}),b.owner.trigger("uploadStart",c),c.setStatus(h.PROGRESS),a.file=c,a.done(function(){var b=f.inArray(a,d);~b&&d.splice(b,1,c)}),a.fail(function(a){c.setStatus(h.ERROR,a),b.owner.trigger("uploadError",c,a),b.owner.trigger("uploadComplete",c)}),d.push(a))},_popBlock:function(a){var b=f.inArray(a,this.pool);this.pool.splice(b,1),a.file.remaning--,this.remaning--},_startSend:function(b){var c,d=this,e=b.file;return e.getStatus()!==h.PROGRESS?void(e.getStatus()===h.INTERRUPT&&d._putback(b)):(d.pool.push(b),d.remaning++,b.blob=1===b.chunks?e.source:e.source.slice(b.start,b.end),c=d.request("before-send",b,function(){e.getStatus()===h.PROGRESS?d._doSend(b):(d._popBlock(b),a.nextTick(d.__tick))}),void c.fail(function(){1===e.remaning?d._finishFile(e).always(function(){b.percentage=1,d._popBlock(b),d.owner.trigger("uploadComplete",e),a.nextTick(d.__tick)}):(b.percentage=1,d.updateFileProgress(e),d._popBlock(b),a.nextTick(d.__tick))}))},_doSend:function(b){var c,e,g=this,i=g.owner,j=g.options,k=b.file,l=new d(j),m=f.extend({},j.formData),n=f.extend({},j.headers);b.transport=l,l.on("destroy",function(){delete b.transport,g._popBlock(b),a.nextTick(g.__tick)}),l.on("progress",function(a){b.percentage=a,g.updateFileProgress(k)}),c=function(a){var c;return e=l.getResponseAsJson()||{},e._raw=l.getResponse(),c=function(b){a=b},i.trigger("uploadAccept",b,e,c)||(a=a||"server"),a},l.on("error",function(a,d){b.retried=b.retried||0,b.chunks>1&&~"http,abort".indexOf(a)&&b.retried<j.chunkRetry?(b.retried++,l.send()):(d||"server"!==a||(a=c(a)),k.setStatus(h.ERROR,a),i.trigger("uploadError",k,a),i.trigger("uploadComplete",k))}),l.on("load",function(){var a;return(a=c())?void l.trigger("error",a,!0):void(1===k.remaning?g._finishFile(k,e):l.destroy())}),m=f.extend(m,{id:k.id,name:k.name,type:k.type,lastModifiedDate:k.lastModifiedDate,size:k.size}),b.chunks>1&&f.extend(m,{chunks:b.chunks,chunk:b.chunk}),i.trigger("uploadBeforeSend",b,m,n),l.appendBlob(j.fileVal,b.blob,k.name),l.append(m),l.setRequestHeader(n),l.send()},_finishFile:function(a,b,c){var d=this.owner;return d.request("after-send-file",arguments,function(){a.setStatus(h.COMPLETE),d.trigger("uploadSuccess",a,b,c)}).fail(function(b){a.getStatus()===h.PROGRESS&&a.setStatus(h.ERROR,b),d.trigger("uploadError",a,b)
}).always(function(){d.trigger("uploadComplete",a)})},updateFileProgress:function(a){var b=0,c=0;a.blocks&&(f.each(a.blocks,function(a,b){c+=(b.percentage||0)*(b.end-b.start)}),b=c/a.size,this.owner.trigger("uploadProgress",a,b||0))}})}),b("widgets/validator",["base","uploader","file","widgets/widget"],function(a,b,c){var d,e=a.$,f={};return d={addValidator:function(a,b){f[a]=b},removeValidator:function(a){delete f[a]}},b.register({name:"validator",init:function(){var b=this;a.nextTick(function(){e.each(f,function(){this.call(b.owner)})})}}),d.addValidator("fileNumLimit",function(){var a=this,b=a.options,c=0,d=parseInt(b.fileNumLimit,10),e=!0;d&&(a.on("beforeFileQueued",function(a){return c>=d&&e&&(e=!1,this.trigger("error","Q_EXCEED_NUM_LIMIT",d,a),setTimeout(function(){e=!0},1)),c>=d?!1:!0}),a.on("fileQueued",function(){c++}),a.on("fileDequeued",function(){c--}),a.on("reset",function(){c=0}))}),d.addValidator("fileSizeLimit",function(){var a=this,b=a.options,c=0,d=parseInt(b.fileSizeLimit,10),e=!0;d&&(a.on("beforeFileQueued",function(a){var b=c+a.size>d;return b&&e&&(e=!1,this.trigger("error","Q_EXCEED_SIZE_LIMIT",d,a),setTimeout(function(){e=!0},1)),b?!1:!0}),a.on("fileQueued",function(a){c+=a.size}),a.on("fileDequeued",function(a){c-=a.size}),a.on("reset",function(){c=0}))}),d.addValidator("fileSingleSizeLimit",function(){var a=this,b=a.options,d=b.fileSingleSizeLimit;d&&a.on("beforeFileQueued",function(a){return a.size>d?(a.setStatus(c.Status.INVALID,"exceed_size"),this.trigger("error","F_EXCEED_SIZE",d,a),!1):void 0})}),d.addValidator("duplicate",function(){function a(a){for(var b,c=0,d=0,e=a.length;e>d;d++)b=a.charCodeAt(d),c=b+(c<<6)+(c<<16)-c;return c}var b=this,c=b.options,d={};c.duplicate||(b.on("beforeFileQueued",function(b){var c=b.__hash||(b.__hash=a(b.name+b.size+b.lastModifiedDate));return d[c]?(this.trigger("error","F_DUPLICATE",b),!1):void 0}),b.on("fileQueued",function(a){var b=a.__hash;b&&(d[b]=!0)}),b.on("fileDequeued",function(a){var b=a.__hash;b&&delete d[b]}),b.on("reset",function(){d={}}))}),d}),b("lib/md5",["runtime/client","mediator"],function(a,b){function c(){a.call(this,"Md5")}return b.installTo(c.prototype),c.prototype.loadFromBlob=function(a){var b=this;b.getRuid()&&b.disconnectRuntime(),b.connectRuntime(a.ruid,function(){b.exec("init"),b.exec("loadFromBlob",a)})},c.prototype.getResult=function(){return this.exec("getResult")},c}),b("widgets/md5",["base","uploader","lib/md5","lib/blob","widgets/widget"],function(a,b,c,d){return b.register({name:"md5",md5File:function(b,e,f){var g=new c,h=a.Deferred(),i=b instanceof d?b:this.request("get-file",b).source;return g.on("progress load",function(a){a=a||{},h.notify(a.total?a.loaded/a.total:1)}),g.on("complete",function(){h.resolve(g.getResult())}),g.on("error",function(a){h.reject(a)}),arguments.length>1&&(e=e||0,f=f||0,0>e&&(e=i.size+e),0>f&&(f=i.size+f),f=Math.min(f,i.size),i=i.slice(e,f)),g.loadFromBlob(i),h.promise()}})}),b("runtime/compbase",[],function(){function a(a,b){this.owner=a,this.options=a.options,this.getRuntime=function(){return b},this.getRuid=function(){return b.uid},this.trigger=function(){return a.trigger.apply(a,arguments)}}return a}),b("runtime/html5/runtime",["base","runtime/runtime","runtime/compbase"],function(b,c,d){function e(){var a={},d=this,e=this.destroy;c.apply(d,arguments),d.type=f,d.exec=function(c,e){var f,h=this,i=h.uid,j=b.slice(arguments,2);return g[c]&&(f=a[i]=a[i]||new g[c](h,d),f[e])?f[e].apply(f,j):void 0},d.destroy=function(){return e&&e.apply(this,arguments)}}var f="html5",g={};return b.inherits(c,{constructor:e,init:function(){var a=this;setTimeout(function(){a.trigger("ready")},1)}}),e.register=function(a,c){var e=g[a]=b.inherits(d,c);return e},a.Blob&&a.FileReader&&a.DataView&&c.addRuntime(f,e),e}),b("runtime/html5/blob",["runtime/html5/runtime","lib/blob"],function(a,b){return a.register("Blob",{slice:function(a,c){var d=this.owner.source,e=d.slice||d.webkitSlice||d.mozSlice;return d=e.call(d,a,c),new b(this.getRuid(),d)}})}),b("runtime/html5/dnd",["base","runtime/html5/runtime","lib/file"],function(a,b,c){var d=a.$,e="webuploader-dnd-";return b.register("DragAndDrop",{init:function(){var b=this.elem=this.options.container;this.dragEnterHandler=a.bindFn(this._dragEnterHandler,this),this.dragOverHandler=a.bindFn(this._dragOverHandler,this),this.dragLeaveHandler=a.bindFn(this._dragLeaveHandler,this),this.dropHandler=a.bindFn(this._dropHandler,this),this.dndOver=!1,b.on("dragenter",this.dragEnterHandler),b.on("dragover",this.dragOverHandler),b.on("dragleave",this.dragLeaveHandler),b.on("drop",this.dropHandler),this.options.disableGlobalDnd&&(d(document).on("dragover",this.dragOverHandler),d(document).on("drop",this.dropHandler))},_dragEnterHandler:function(a){var b,c=this,d=c._denied||!1;return a=a.originalEvent||a,c.dndOver||(c.dndOver=!0,b=a.dataTransfer.items,b&&b.length&&(c._denied=d=!c.trigger("accept",b)),c.elem.addClass(e+"over"),c.elem[d?"addClass":"removeClass"](e+"denied")),a.dataTransfer.dropEffect=d?"none":"copy",!1},_dragOverHandler:function(a){var b=this.elem.parent().get(0);return b&&!d.contains(b,a.currentTarget)?!1:(clearTimeout(this._leaveTimer),this._dragEnterHandler.call(this,a),!1)},_dragLeaveHandler:function(){var a,b=this;return a=function(){b.dndOver=!1,b.elem.removeClass(e+"over "+e+"denied")},clearTimeout(b._leaveTimer),b._leaveTimer=setTimeout(a,100),!1},_dropHandler:function(a){var b,f,g=this,h=g.getRuid(),i=g.elem.parent().get(0);if(i&&!d.contains(i,a.currentTarget))return!1;a=a.originalEvent||a,b=a.dataTransfer;try{f=b.getData("text/html")}catch(j){}return f?void 0:(g._getTansferFiles(b,function(a){g.trigger("drop",d.map(a,function(a){return new c(h,a)}))}),g.dndOver=!1,g.elem.removeClass(e+"over"),!1)},_getTansferFiles:function(b,c){var d,e,f,g,h,i,j,k=[],l=[];for(d=b.items,e=b.files,j=!(!d||!d[0].webkitGetAsEntry),h=0,i=e.length;i>h;h++)f=e[h],g=d&&d[h],j&&g.webkitGetAsEntry().isDirectory?l.push(this._traverseDirectoryTree(g.webkitGetAsEntry(),k)):k.push(f);a.when.apply(a,l).done(function(){k.length&&c(k)})},_traverseDirectoryTree:function(b,c){var d=a.Deferred(),e=this;return b.isFile?b.file(function(a){c.push(a),d.resolve()}):b.isDirectory&&b.createReader().readEntries(function(b){var f,g=b.length,h=[],i=[];for(f=0;g>f;f++)h.push(e._traverseDirectoryTree(b[f],i));a.when.apply(a,h).then(function(){c.push.apply(c,i),d.resolve()},d.reject)}),d.promise()},destroy:function(){var a=this.elem;a&&(a.off("dragenter",this.dragEnterHandler),a.off("dragover",this.dragOverHandler),a.off("dragleave",this.dragLeaveHandler),a.off("drop",this.dropHandler),this.options.disableGlobalDnd&&(d(document).off("dragover",this.dragOverHandler),d(document).off("drop",this.dropHandler)))}})}),b("runtime/html5/filepaste",["base","runtime/html5/runtime","lib/file"],function(a,b,c){return b.register("FilePaste",{init:function(){var b,c,d,e,f=this.options,g=this.elem=f.container,h=".*";if(f.accept){for(b=[],c=0,d=f.accept.length;d>c;c++)e=f.accept[c].mimeTypes,e&&b.push(e);b.length&&(h=b.join(","),h=h.replace(/,/g,"|").replace(/\*/g,".*"))}this.accept=h=new RegExp(h,"i"),this.hander=a.bindFn(this._pasteHander,this),g.on("paste",this.hander)},_pasteHander:function(a){var b,d,e,f,g,h=[],i=this.getRuid();for(a=a.originalEvent||a,b=a.clipboardData.items,f=0,g=b.length;g>f;f++)d=b[f],"file"===d.kind&&(e=d.getAsFile())&&h.push(new c(i,e));h.length&&(a.preventDefault(),a.stopPropagation(),this.trigger("paste",h))},destroy:function(){this.elem.off("paste",this.hander)}})}),b("runtime/html5/filepicker",["base","runtime/html5/runtime"],function(a,b){var c=a.$;return b.register("FilePicker",{init:function(){var a,b,d,e,f=this.getRuntime().getContainer(),g=this,h=g.owner,i=g.options,j=this.label=c(document.createElement("label")),k=this.input=c(document.createElement("input"));if(k.attr("type","file"),k.attr("name",i.name),k.addClass("webuploader-element-invisible"),j.on("click",function(){k.trigger("click")}),j.css({opacity:0,width:"100%",height:"100%",display:"block",cursor:"pointer",background:"#ffffff"}),i.multiple&&k.attr("multiple","multiple"),i.accept&&i.accept.length>0){for(a=[],b=0,d=i.accept.length;d>b;b++)a.push(i.accept[b].mimeTypes);k.attr("accept",a.join(","))}f.append(k),f.append(j),e=function(a){h.trigger(a.type)},k.on("change",function(a){var b,d=arguments.callee;g.files=a.target.files,b=this.cloneNode(!0),b.value=null,this.parentNode.replaceChild(b,this),k.off(),k=c(b).on("change",d).on("mouseenter mouseleave",e),h.trigger("change")}),j.on("mouseenter mouseleave",e)},getFiles:function(){return this.files},destroy:function(){this.input.off(),this.label.off()}})}),b("runtime/html5/util",["base"],function(b){var c=a.createObjectURL&&a||a.URL&&URL.revokeObjectURL&&URL||a.webkitURL,d=b.noop,e=d;return c&&(d=function(){return c.createObjectURL.apply(c,arguments)},e=function(){return c.revokeObjectURL.apply(c,arguments)}),{createObjectURL:d,revokeObjectURL:e,dataURL2Blob:function(a){var b,c,d,e,f,g;for(g=a.split(","),b=~g[0].indexOf("base64")?atob(g[1]):decodeURIComponent(g[1]),d=new ArrayBuffer(b.length),c=new Uint8Array(d),e=0;e<b.length;e++)c[e]=b.charCodeAt(e);return f=g[0].split(":")[1].split(";")[0],this.arrayBufferToBlob(d,f)},dataURL2ArrayBuffer:function(a){var b,c,d,e;for(e=a.split(","),b=~e[0].indexOf("base64")?atob(e[1]):decodeURIComponent(e[1]),c=new Uint8Array(b.length),d=0;d<b.length;d++)c[d]=b.charCodeAt(d);return c.buffer},arrayBufferToBlob:function(b,c){var d,e=a.BlobBuilder||a.WebKitBlobBuilder;return e?(d=new e,d.append(b),d.getBlob(c)):new Blob([b],c?{type:c}:{})},canvasToDataUrl:function(a,b,c){return a.toDataURL(b,c/100)},parseMeta:function(a,b){b(!1,{})},updateImageHead:function(a){return a}}}),b("runtime/html5/imagemeta",["runtime/html5/util"],function(a){var b;return b={parsers:{65505:[]},maxMetaDataSize:262144,parse:function(a,b){var c=this,d=new FileReader;d.onload=function(){b(!1,c._parse(this.result)),d=d.onload=d.onerror=null},d.onerror=function(a){b(a.message),d=d.onload=d.onerror=null},a=a.slice(0,c.maxMetaDataSize),d.readAsArrayBuffer(a.getSource())},_parse:function(a,c){if(!(a.byteLength<6)){var d,e,f,g,h=new DataView(a),i=2,j=h.byteLength-4,k=i,l={};if(65496===h.getUint16(0)){for(;j>i&&(d=h.getUint16(i),d>=65504&&65519>=d||65534===d)&&(e=h.getUint16(i+2)+2,!(i+e>h.byteLength));){if(f=b.parsers[d],!c&&f)for(g=0;g<f.length;g+=1)f[g].call(b,h,i,e,l);i+=e,k=i}k>6&&(l.imageHead=a.slice?a.slice(2,k):new Uint8Array(a).subarray(2,k))}return l}},updateImageHead:function(a,b){var c,d,e,f=this._parse(a,!0);return e=2,f.imageHead&&(e=2+f.imageHead.byteLength),d=a.slice?a.slice(e):new Uint8Array(a).subarray(e),c=new Uint8Array(b.byteLength+2+d.byteLength),c[0]=255,c[1]=216,c.set(new Uint8Array(b),2),c.set(new Uint8Array(d),b.byteLength+2),c.buffer}},a.parseMeta=function(){return b.parse.apply(b,arguments)},a.updateImageHead=function(){return b.updateImageHead.apply(b,arguments)},b}),b("runtime/html5/imagemeta/exif",["base","runtime/html5/imagemeta"],function(a,b){var c={};return c.ExifMap=function(){return this},c.ExifMap.prototype.map={Orientation:274},c.ExifMap.prototype.get=function(a){return this[a]||this[this.map[a]]},c.exifTagTypes={1:{getValue:function(a,b){return a.getUint8(b)},size:1},2:{getValue:function(a,b){return String.fromCharCode(a.getUint8(b))},size:1,ascii:!0},3:{getValue:function(a,b,c){return a.getUint16(b,c)},size:2},4:{getValue:function(a,b,c){return a.getUint32(b,c)},size:4},5:{getValue:function(a,b,c){return a.getUint32(b,c)/a.getUint32(b+4,c)},size:8},9:{getValue:function(a,b,c){return a.getInt32(b,c)},size:4},10:{getValue:function(a,b,c){return a.getInt32(b,c)/a.getInt32(b+4,c)},size:8}},c.exifTagTypes[7]=c.exifTagTypes[1],c.getExifValue=function(b,d,e,f,g,h){var i,j,k,l,m,n,o=c.exifTagTypes[f];if(!o)return void a.log("Invalid Exif data: Invalid tag type.");if(i=o.size*g,j=i>4?d+b.getUint32(e+8,h):e+8,j+i>b.byteLength)return void a.log("Invalid Exif data: Invalid data offset.");if(1===g)return o.getValue(b,j,h);for(k=[],l=0;g>l;l+=1)k[l]=o.getValue(b,j+l*o.size,h);if(o.ascii){for(m="",l=0;l<k.length&&(n=k[l],"\x00"!==n);l+=1)m+=n;return m}return k},c.parseExifTag=function(a,b,d,e,f){var g=a.getUint16(d,e);f.exif[g]=c.getExifValue(a,b,d,a.getUint16(d+2,e),a.getUint32(d+4,e),e)},c.parseExifTags=function(b,c,d,e,f){var g,h,i;if(d+6>b.byteLength)return void a.log("Invalid Exif data: Invalid directory offset.");if(g=b.getUint16(d,e),h=d+2+12*g,h+4>b.byteLength)return void a.log("Invalid Exif data: Invalid directory size.");for(i=0;g>i;i+=1)this.parseExifTag(b,c,d+2+12*i,e,f);return b.getUint32(h,e)},c.parseExifData=function(b,d,e,f){var g,h,i=d+10;if(1165519206===b.getUint32(d+4)){if(i+8>b.byteLength)return void a.log("Invalid Exif data: Invalid segment size.");if(0!==b.getUint16(d+8))return void a.log("Invalid Exif data: Missing byte alignment offset.");switch(b.getUint16(i)){case 18761:g=!0;break;case 19789:g=!1;break;default:return void a.log("Invalid Exif data: Invalid byte alignment marker.")}if(42!==b.getUint16(i+2,g))return void a.log("Invalid Exif data: Missing TIFF marker.");h=b.getUint32(i+4,g),f.exif=new c.ExifMap,h=c.parseExifTags(b,i,i+h,g,f)}},b.parsers[65505].push(c.parseExifData),c}),b("runtime/html5/jpegencoder",[],function(){function a(a){function b(a){for(var b=[16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22,37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99],c=0;64>c;c++){var d=y((b[c]*a+50)/100);1>d?d=1:d>255&&(d=255),z[P[c]]=d}for(var e=[17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99],f=0;64>f;f++){var g=y((e[f]*a+50)/100);1>g?g=1:g>255&&(g=255),A[P[f]]=g}for(var h=[1,1.387039845,1.306562965,1.175875602,1,.785694958,.5411961,.275899379],i=0,j=0;8>j;j++)for(var k=0;8>k;k++)B[i]=1/(z[P[i]]*h[j]*h[k]*8),C[i]=1/(A[P[i]]*h[j]*h[k]*8),i++}function c(a,b){for(var c=0,d=0,e=new Array,f=1;16>=f;f++){for(var g=1;g<=a[f];g++)e[b[d]]=[],e[b[d]][0]=c,e[b[d]][1]=f,d++,c++;c*=2}return e}function d(){t=c(Q,R),u=c(U,V),v=c(S,T),w=c(W,X)}function e(){for(var a=1,b=2,c=1;15>=c;c++){for(var d=a;b>d;d++)E[32767+d]=c,D[32767+d]=[],D[32767+d][1]=c,D[32767+d][0]=d;for(var e=-(b-1);-a>=e;e++)E[32767+e]=c,D[32767+e]=[],D[32767+e][1]=c,D[32767+e][0]=b-1+e;a<<=1,b<<=1}}function f(){for(var a=0;256>a;a++)O[a]=19595*a,O[a+256>>0]=38470*a,O[a+512>>0]=7471*a+32768,O[a+768>>0]=-11059*a,O[a+1024>>0]=-21709*a,O[a+1280>>0]=32768*a+8421375,O[a+1536>>0]=-27439*a,O[a+1792>>0]=-5329*a}function g(a){for(var b=a[0],c=a[1]-1;c>=0;)b&1<<c&&(I|=1<<J),c--,J--,0>J&&(255==I?(h(255),h(0)):h(I),J=7,I=0)}function h(a){H.push(N[a])}function i(a){h(a>>8&255),h(255&a)}function j(a,b){var c,d,e,f,g,h,i,j,k,l=0,m=8,n=64;for(k=0;m>k;++k){c=a[l],d=a[l+1],e=a[l+2],f=a[l+3],g=a[l+4],h=a[l+5],i=a[l+6],j=a[l+7];var o=c+j,p=c-j,q=d+i,r=d-i,s=e+h,t=e-h,u=f+g,v=f-g,w=o+u,x=o-u,y=q+s,z=q-s;a[l]=w+y,a[l+4]=w-y;var A=.707106781*(z+x);a[l+2]=x+A,a[l+6]=x-A,w=v+t,y=t+r,z=r+p;var B=.382683433*(w-z),C=.5411961*w+B,D=1.306562965*z+B,E=.707106781*y,G=p+E,H=p-E;a[l+5]=H+C,a[l+3]=H-C,a[l+1]=G+D,a[l+7]=G-D,l+=8}for(l=0,k=0;m>k;++k){c=a[l],d=a[l+8],e=a[l+16],f=a[l+24],g=a[l+32],h=a[l+40],i=a[l+48],j=a[l+56];var I=c+j,J=c-j,K=d+i,L=d-i,M=e+h,N=e-h,O=f+g,P=f-g,Q=I+O,R=I-O,S=K+M,T=K-M;a[l]=Q+S,a[l+32]=Q-S;var U=.707106781*(T+R);a[l+16]=R+U,a[l+48]=R-U,Q=P+N,S=N+L,T=L+J;var V=.382683433*(Q-T),W=.5411961*Q+V,X=1.306562965*T+V,Y=.707106781*S,Z=J+Y,$=J-Y;a[l+40]=$+W,a[l+24]=$-W,a[l+8]=Z+X,a[l+56]=Z-X,l++}var _;for(k=0;n>k;++k)_=a[k]*b[k],F[k]=_>0?_+.5|0:_-.5|0;return F}function k(){i(65504),i(16),h(74),h(70),h(73),h(70),h(0),h(1),h(1),h(0),i(1),i(1),h(0),h(0)}function l(a,b){i(65472),i(17),h(8),i(b),i(a),h(3),h(1),h(17),h(0),h(2),h(17),h(1),h(3),h(17),h(1)}function m(){i(65499),i(132),h(0);for(var a=0;64>a;a++)h(z[a]);h(1);for(var b=0;64>b;b++)h(A[b])}function n(){i(65476),i(418),h(0);for(var a=0;16>a;a++)h(Q[a+1]);for(var b=0;11>=b;b++)h(R[b]);h(16);for(var c=0;16>c;c++)h(S[c+1]);for(var d=0;161>=d;d++)h(T[d]);h(1);for(var e=0;16>e;e++)h(U[e+1]);for(var f=0;11>=f;f++)h(V[f]);h(17);for(var g=0;16>g;g++)h(W[g+1]);for(var j=0;161>=j;j++)h(X[j])}function o(){i(65498),i(12),h(3),h(1),h(0),h(2),h(17),h(3),h(17),h(0),h(63),h(0)}function p(a,b,c,d,e){for(var f,h=e[0],i=e[240],k=16,l=63,m=64,n=j(a,b),o=0;m>o;++o)G[P[o]]=n[o];var p=G[0]-c;c=G[0],0==p?g(d[0]):(f=32767+p,g(d[E[f]]),g(D[f]));for(var q=63;q>0&&0==G[q];q--);if(0==q)return g(h),c;for(var r,s=1;q>=s;){for(var t=s;0==G[s]&&q>=s;++s);var u=s-t;if(u>=k){r=u>>4;for(var v=1;r>=v;++v)g(i);u=15&u}f=32767+G[s],g(e[(u<<4)+E[f]]),g(D[f]),s++}return q!=l&&g(h),c}function q(){for(var a=String.fromCharCode,b=0;256>b;b++)N[b]=a(b)}function r(a){if(0>=a&&(a=1),a>100&&(a=100),x!=a){var c=0;c=Math.floor(50>a?5e3/a:200-2*a),b(c),x=a}}function s(){a||(a=50),q(),d(),e(),f(),r(a)}var t,u,v,w,x,y=(Math.round,Math.floor),z=new Array(64),A=new Array(64),B=new Array(64),C=new Array(64),D=new Array(65535),E=new Array(65535),F=new Array(64),G=new Array(64),H=[],I=0,J=7,K=new Array(64),L=new Array(64),M=new Array(64),N=new Array(256),O=new Array(2048),P=[0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18,24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63],Q=[0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0],R=[0,1,2,3,4,5,6,7,8,9,10,11],S=[0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,125],T=[1,2,3,0,4,17,5,18,33,49,65,6,19,81,97,7,34,113,20,50,129,145,161,8,35,66,177,193,21,82,209,240,36,51,98,114,130,9,10,22,23,24,25,26,37,38,39,40,41,42,52,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,225,226,227,228,229,230,231,232,233,234,241,242,243,244,245,246,247,248,249,250],U=[0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0],V=[0,1,2,3,4,5,6,7,8,9,10,11],W=[0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,119],X=[0,1,2,3,17,4,5,33,49,6,18,65,81,7,97,113,19,34,50,129,8,20,66,145,161,177,193,9,35,51,82,240,21,98,114,209,10,22,36,52,225,37,241,23,24,25,26,38,39,40,41,42,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,130,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,226,227,228,229,230,231,232,233,234,242,243,244,245,246,247,248,249,250];this.encode=function(a,b){b&&r(b),H=new Array,I=0,J=7,i(65496),k(),m(),l(a.width,a.height),n(),o();var c=0,d=0,e=0;I=0,J=7,this.encode.displayName="_encode_";for(var f,h,j,q,s,x,y,z,A,D=a.data,E=a.width,F=a.height,G=4*E,N=0;F>N;){for(f=0;G>f;){for(s=G*N+f,x=s,y=-1,z=0,A=0;64>A;A++)z=A>>3,y=4*(7&A),x=s+z*G+y,N+z>=F&&(x-=G*(N+1+z-F)),f+y>=G&&(x-=f+y-G+4),h=D[x++],j=D[x++],q=D[x++],K[A]=(O[h]+O[j+256>>0]+O[q+512>>0]>>16)-128,L[A]=(O[h+768>>0]+O[j+1024>>0]+O[q+1280>>0]>>16)-128,M[A]=(O[h+1280>>0]+O[j+1536>>0]+O[q+1792>>0]>>16)-128;c=p(K,B,c,t,v),d=p(L,C,d,u,w),e=p(M,C,e,u,w),f+=32}N+=8}if(J>=0){var P=[];P[1]=J+1,P[0]=(1<<J+1)-1,g(P)}i(65497);var Q="data:image/jpeg;base64,"+btoa(H.join(""));return H=[],Q},s()}return a.encode=function(b,c){var d=new a(c);return d.encode(b)},a}),b("runtime/html5/androidpatch",["runtime/html5/util","runtime/html5/jpegencoder","base"],function(a,b,c){var d,e=a.canvasToDataUrl;a.canvasToDataUrl=function(a,f,g){var h,i,j,k,l;return c.os.android?("image/jpeg"===f&&"undefined"==typeof d&&(k=e.apply(null,arguments),l=k.split(","),k=~l[0].indexOf("base64")?atob(l[1]):decodeURIComponent(l[1]),k=k.substring(0,2),d=255===k.charCodeAt(0)&&216===k.charCodeAt(1)),"image/jpeg"!==f||d?e.apply(null,arguments):(i=a.width,j=a.height,h=a.getContext("2d"),b.encode(h.getImageData(0,0,i,j),g))):e.apply(null,arguments)}}),b("runtime/html5/image",["base","runtime/html5/runtime","runtime/html5/util"],function(a,b,c){var d="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D";return b.register("Image",{modified:!1,init:function(){var a=this,b=new Image;b.onload=function(){a._info={type:a.type,width:this.width,height:this.height},a._metas||"image/jpeg"!==a.type?a.owner.trigger("load"):c.parseMeta(a._blob,function(b,c){a._metas=c,a.owner.trigger("load")})},b.onerror=function(){a.owner.trigger("error")},a._img=b},loadFromBlob:function(a){var b=this,d=b._img;b._blob=a,b.type=a.type,d.src=c.createObjectURL(a.getSource()),b.owner.once("load",function(){c.revokeObjectURL(d.src)})},resize:function(a,b){var c=this._canvas||(this._canvas=document.createElement("canvas"));this._resize(this._img,c,a,b),this._blob=null,this.modified=!0,this.owner.trigger("complete","resize")},crop:function(a,b,c,d,e){var f=this._canvas||(this._canvas=document.createElement("canvas")),g=this.options,h=this._img,i=h.naturalWidth,j=h.naturalHeight,k=this.getOrientation();e=e||1,f.width=c,f.height=d,g.preserveHeaders||this._rotate2Orientaion(f,k),this._renderImageToCanvas(f,h,-a,-b,i*e,j*e),this._blob=null,this.modified=!0,this.owner.trigger("complete","crop")},getAsBlob:function(a){var b,d=this._blob,e=this.options;if(a=a||this.type,this.modified||this.type!==a){if(b=this._canvas,"image/jpeg"===a){if(d=c.canvasToDataUrl(b,a,e.quality),e.preserveHeaders&&this._metas&&this._metas.imageHead)return d=c.dataURL2ArrayBuffer(d),d=c.updateImageHead(d,this._metas.imageHead),d=c.arrayBufferToBlob(d,a)}else d=c.canvasToDataUrl(b,a);d=c.dataURL2Blob(d)}return d},getAsDataUrl:function(a){var b=this.options;return a=a||this.type,"image/jpeg"===a?c.canvasToDataUrl(this._canvas,a,b.quality):this._canvas.toDataURL(a)},getOrientation:function(){return this._metas&&this._metas.exif&&this._metas.exif.get("Orientation")||1},info:function(a){return a?(this._info=a,this):this._info},meta:function(a){return a?(this._meta=a,this):this._meta},destroy:function(){var a=this._canvas;this._img.onload=null,a&&(a.getContext("2d").clearRect(0,0,a.width,a.height),a.width=a.height=0,this._canvas=null),this._img.src=d,this._img=this._blob=null},_resize:function(a,b,c,d){var e,f,g,h,i,j=this.options,k=a.width,l=a.height,m=this.getOrientation();~[5,6,7,8].indexOf(m)&&(c^=d,d^=c,c^=d),e=Math[j.crop?"max":"min"](c/k,d/l),j.allowMagnify||(e=Math.min(1,e)),f=k*e,g=l*e,j.crop?(b.width=c,b.height=d):(b.width=f,b.height=g),h=(b.width-f)/2,i=(b.height-g)/2,j.preserveHeaders||this._rotate2Orientaion(b,m),this._renderImageToCanvas(b,a,h,i,f,g)},_rotate2Orientaion:function(a,b){var c=a.width,d=a.height,e=a.getContext("2d");switch(b){case 5:case 6:case 7:case 8:a.width=d,a.height=c}switch(b){case 2:e.translate(c,0),e.scale(-1,1);break;case 3:e.translate(c,d),e.rotate(Math.PI);break;case 4:e.translate(0,d),e.scale(1,-1);break;case 5:e.rotate(.5*Math.PI),e.scale(1,-1);break;case 6:e.rotate(.5*Math.PI),e.translate(0,-d);break;case 7:e.rotate(.5*Math.PI),e.translate(c,-d),e.scale(-1,1);break;case 8:e.rotate(-.5*Math.PI),e.translate(-c,0)}},_renderImageToCanvas:function(){function b(a,b,c){var d,e,f,g=document.createElement("canvas"),h=g.getContext("2d"),i=0,j=c,k=c;for(g.width=1,g.height=c,h.drawImage(a,0,0),d=h.getImageData(0,0,1,c).data;k>i;)e=d[4*(k-1)+3],0===e?j=k:i=k,k=j+i>>1;return f=k/c,0===f?1:f}function c(a){var b,c,d=a.naturalWidth,e=a.naturalHeight;return d*e>1048576?(b=document.createElement("canvas"),b.width=b.height=1,c=b.getContext("2d"),c.drawImage(a,-d+1,0),0===c.getImageData(0,0,1,1).data[3]):!1}return a.os.ios?a.os.ios>=7?function(a,c,d,e,f,g){var h=c.naturalWidth,i=c.naturalHeight,j=b(c,h,i);return a.getContext("2d").drawImage(c,0,0,h*j,i*j,d,e,f,g)}:function(a,d,e,f,g,h){var i,j,k,l,m,n,o,p=d.naturalWidth,q=d.naturalHeight,r=a.getContext("2d"),s=c(d),t="image/jpeg"===this.type,u=1024,v=0,w=0;for(s&&(p/=2,q/=2),r.save(),i=document.createElement("canvas"),i.width=i.height=u,j=i.getContext("2d"),k=t?b(d,p,q):1,l=Math.ceil(u*g/p),m=Math.ceil(u*h/q/k);q>v;){for(n=0,o=0;p>n;)j.clearRect(0,0,u,u),j.drawImage(d,-n,-v),r.drawImage(i,0,0,u,u,e+o,f+w,l,m),n+=u,o+=l;v+=u,w+=m}r.restore(),i=j=null}:function(b){var c=a.slice(arguments,1),d=b.getContext("2d");d.drawImage.apply(d,c)}}()})}),b("runtime/html5/transport",["base","runtime/html5/runtime"],function(a,b){var c=a.noop,d=a.$;return b.register("Transport",{init:function(){this._status=0,this._response=null},send:function(){var b,c,e,f=this.owner,g=this.options,h=this._initAjax(),i=f._blob,j=g.server;g.sendAsBinary?(j+=(/\?/.test(j)?"&":"?")+d.param(f._formData),c=i.getSource()):(b=new FormData,d.each(f._formData,function(a,c){b.append(a,c)}),b.append(g.fileVal,i.getSource(),g.filename||f._formData.name||"")),g.withCredentials&&"withCredentials"in h?(h.open(g.method,j,!0),h.withCredentials=!0):h.open(g.method,j),this._setRequestHeader(h,g.headers),c?(h.overrideMimeType&&h.overrideMimeType("application/octet-stream"),a.os.android?(e=new FileReader,e.onload=function(){h.send(this.result),e=e.onload=null},e.readAsArrayBuffer(c)):h.send(c)):h.send(b)},getResponse:function(){return this._response},getResponseAsJson:function(){return this._parseJson(this._response)},getStatus:function(){return this._status},abort:function(){var a=this._xhr;a&&(a.upload.onprogress=c,a.onreadystatechange=c,a.abort(),this._xhr=a=null)},destroy:function(){this.abort()},_initAjax:function(){var a=this,b=new XMLHttpRequest,d=this.options;return!d.withCredentials||"withCredentials"in b||"undefined"==typeof XDomainRequest||(b=new XDomainRequest),b.upload.onprogress=function(b){var c=0;return b.lengthComputable&&(c=b.loaded/b.total),a.trigger("progress",c)},b.onreadystatechange=function(){return 4===b.readyState?(b.upload.onprogress=c,b.onreadystatechange=c,a._xhr=null,a._status=b.status,b.status>=200&&b.status<300?(a._response=b.responseText,a.trigger("load")):b.status>=500&&b.status<600?(a._response=b.responseText,a.trigger("error","server")):a.trigger("error",a._status?"http":"abort")):void 0},a._xhr=b,b},_setRequestHeader:function(a,b){d.each(b,function(b,c){a.setRequestHeader(b,c)})},_parseJson:function(a){var b;try{b=JSON.parse(a)}catch(c){b={}}return b}})}),b("runtime/html5/md5",["runtime/html5/runtime"],function(a){var b=function(a,b){return a+b&4294967295},c=function(a,c,d,e,f,g){return c=b(b(c,a),b(e,g)),b(c<<f|c>>>32-f,d)},d=function(a,b,d,e,f,g,h){return c(b&d|~b&e,a,b,f,g,h)},e=function(a,b,d,e,f,g,h){return c(b&e|d&~e,a,b,f,g,h)},f=function(a,b,d,e,f,g,h){return c(b^d^e,a,b,f,g,h)},g=function(a,b,d,e,f,g,h){return c(d^(b|~e),a,b,f,g,h)},h=function(a,c){var h=a[0],i=a[1],j=a[2],k=a[3];h=d(h,i,j,k,c[0],7,-680876936),k=d(k,h,i,j,c[1],12,-389564586),j=d(j,k,h,i,c[2],17,606105819),i=d(i,j,k,h,c[3],22,-1044525330),h=d(h,i,j,k,c[4],7,-176418897),k=d(k,h,i,j,c[5],12,1200080426),j=d(j,k,h,i,c[6],17,-1473231341),i=d(i,j,k,h,c[7],22,-45705983),h=d(h,i,j,k,c[8],7,1770035416),k=d(k,h,i,j,c[9],12,-1958414417),j=d(j,k,h,i,c[10],17,-42063),i=d(i,j,k,h,c[11],22,-1990404162),h=d(h,i,j,k,c[12],7,1804603682),k=d(k,h,i,j,c[13],12,-40341101),j=d(j,k,h,i,c[14],17,-1502002290),i=d(i,j,k,h,c[15],22,1236535329),h=e(h,i,j,k,c[1],5,-165796510),k=e(k,h,i,j,c[6],9,-1069501632),j=e(j,k,h,i,c[11],14,643717713),i=e(i,j,k,h,c[0],20,-373897302),h=e(h,i,j,k,c[5],5,-701558691),k=e(k,h,i,j,c[10],9,38016083),j=e(j,k,h,i,c[15],14,-660478335),i=e(i,j,k,h,c[4],20,-405537848),h=e(h,i,j,k,c[9],5,568446438),k=e(k,h,i,j,c[14],9,-1019803690),j=e(j,k,h,i,c[3],14,-187363961),i=e(i,j,k,h,c[8],20,1163531501),h=e(h,i,j,k,c[13],5,-1444681467),k=e(k,h,i,j,c[2],9,-51403784),j=e(j,k,h,i,c[7],14,1735328473),i=e(i,j,k,h,c[12],20,-1926607734),h=f(h,i,j,k,c[5],4,-378558),k=f(k,h,i,j,c[8],11,-2022574463),j=f(j,k,h,i,c[11],16,1839030562),i=f(i,j,k,h,c[14],23,-35309556),h=f(h,i,j,k,c[1],4,-1530992060),k=f(k,h,i,j,c[4],11,1272893353),j=f(j,k,h,i,c[7],16,-155497632),i=f(i,j,k,h,c[10],23,-1094730640),h=f(h,i,j,k,c[13],4,681279174),k=f(k,h,i,j,c[0],11,-358537222),j=f(j,k,h,i,c[3],16,-722521979),i=f(i,j,k,h,c[6],23,76029189),h=f(h,i,j,k,c[9],4,-640364487),k=f(k,h,i,j,c[12],11,-421815835),j=f(j,k,h,i,c[15],16,530742520),i=f(i,j,k,h,c[2],23,-995338651),h=g(h,i,j,k,c[0],6,-198630844),k=g(k,h,i,j,c[7],10,1126891415),j=g(j,k,h,i,c[14],15,-1416354905),i=g(i,j,k,h,c[5],21,-57434055),h=g(h,i,j,k,c[12],6,1700485571),k=g(k,h,i,j,c[3],10,-1894986606),j=g(j,k,h,i,c[10],15,-1051523),i=g(i,j,k,h,c[1],21,-2054922799),h=g(h,i,j,k,c[8],6,1873313359),k=g(k,h,i,j,c[15],10,-30611744),j=g(j,k,h,i,c[6],15,-1560198380),i=g(i,j,k,h,c[13],21,1309151649),h=g(h,i,j,k,c[4],6,-145523070),k=g(k,h,i,j,c[11],10,-1120210379),j=g(j,k,h,i,c[2],15,718787259),i=g(i,j,k,h,c[9],21,-343485551),a[0]=b(h,a[0]),a[1]=b(i,a[1]),a[2]=b(j,a[2]),a[3]=b(k,a[3])},i=function(a){var b,c=[];for(b=0;64>b;b+=4)c[b>>2]=a.charCodeAt(b)+(a.charCodeAt(b+1)<<8)+(a.charCodeAt(b+2)<<16)+(a.charCodeAt(b+3)<<24);return c},j=function(a){var b,c=[];for(b=0;64>b;b+=4)c[b>>2]=a[b]+(a[b+1]<<8)+(a[b+2]<<16)+(a[b+3]<<24);return c},k=function(a){var b,c,d,e,f,g,j=a.length,k=[1732584193,-271733879,-1732584194,271733878];for(b=64;j>=b;b+=64)h(k,i(a.substring(b-64,b)));for(a=a.substring(b-64),c=a.length,d=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],b=0;c>b;b+=1)d[b>>2]|=a.charCodeAt(b)<<(b%4<<3);if(d[b>>2]|=128<<(b%4<<3),b>55)for(h(k,d),b=0;16>b;b+=1)d[b]=0;return e=8*j,e=e.toString(16).match(/(.*?)(.{0,8})$/),f=parseInt(e[2],16),g=parseInt(e[1],16)||0,d[14]=f,d[15]=g,h(k,d),k},l=function(a){var b,c,d,e,f,g,i=a.length,k=[1732584193,-271733879,-1732584194,271733878];for(b=64;i>=b;b+=64)h(k,j(a.subarray(b-64,b)));for(a=i>b-64?a.subarray(b-64):new Uint8Array(0),c=a.length,d=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],b=0;c>b;b+=1)d[b>>2]|=a[b]<<(b%4<<3);if(d[b>>2]|=128<<(b%4<<3),b>55)for(h(k,d),b=0;16>b;b+=1)d[b]=0;return e=8*i,e=e.toString(16).match(/(.*?)(.{0,8})$/),f=parseInt(e[2],16),g=parseInt(e[1],16)||0,d[14]=f,d[15]=g,h(k,d),k},m=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"],n=function(a){var b,c="";for(b=0;4>b;b+=1)c+=m[a>>8*b+4&15]+m[a>>8*b&15];return c},o=function(a){var b;for(b=0;b<a.length;b+=1)a[b]=n(a[b]);return a.join("")},p=function(a){return o(k(a))},q=function(){this.reset()};return"5d41402abc4b2a76b9719d911017c592"!==p("hello")&&(b=function(a,b){var c=(65535&a)+(65535&b),d=(a>>16)+(b>>16)+(c>>16);return d<<16|65535&c}),q.prototype.append=function(a){return/[\u0080-\uFFFF]/.test(a)&&(a=unescape(encodeURIComponent(a))),this.appendBinary(a),this},q.prototype.appendBinary=function(a){this._buff+=a,this._length+=a.length;var b,c=this._buff.length;for(b=64;c>=b;b+=64)h(this._state,i(this._buff.substring(b-64,b)));return this._buff=this._buff.substr(b-64),this},q.prototype.end=function(a){var b,c,d=this._buff,e=d.length,f=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(b=0;e>b;b+=1)f[b>>2]|=d.charCodeAt(b)<<(b%4<<3);return this._finish(f,e),c=a?this._state:o(this._state),this.reset(),c},q.prototype._finish=function(a,b){var c,d,e,f=b;if(a[f>>2]|=128<<(f%4<<3),f>55)for(h(this._state,a),f=0;16>f;f+=1)a[f]=0;c=8*this._length,c=c.toString(16).match(/(.*?)(.{0,8})$/),d=parseInt(c[2],16),e=parseInt(c[1],16)||0,a[14]=d,a[15]=e,h(this._state,a)},q.prototype.reset=function(){return this._buff="",this._length=0,this._state=[1732584193,-271733879,-1732584194,271733878],this},q.prototype.destroy=function(){delete this._state,delete this._buff,delete this._length},q.hash=function(a,b){/[\u0080-\uFFFF]/.test(a)&&(a=unescape(encodeURIComponent(a)));var c=k(a);return b?c:o(c)},q.hashBinary=function(a,b){var c=k(a);return b?c:o(c)},q.ArrayBuffer=function(){this.reset()},q.ArrayBuffer.prototype.append=function(a){var b,c=this._concatArrayBuffer(this._buff,a),d=c.length;for(this._length+=a.byteLength,b=64;d>=b;b+=64)h(this._state,j(c.subarray(b-64,b)));return this._buff=d>b-64?c.subarray(b-64):new Uint8Array(0),this},q.ArrayBuffer.prototype.end=function(a){var b,c,d=this._buff,e=d.length,f=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];
for(b=0;e>b;b+=1)f[b>>2]|=d[b]<<(b%4<<3);return this._finish(f,e),c=a?this._state:o(this._state),this.reset(),c},q.ArrayBuffer.prototype._finish=q.prototype._finish,q.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._state=[1732584193,-271733879,-1732584194,271733878],this},q.ArrayBuffer.prototype.destroy=q.prototype.destroy,q.ArrayBuffer.prototype._concatArrayBuffer=function(a,b){var c=a.length,d=new Uint8Array(c+b.byteLength);return d.set(a),d.set(new Uint8Array(b),c),d},q.ArrayBuffer.hash=function(a,b){var c=l(new Uint8Array(a));return b?c:o(c)},a.register("Md5",{init:function(){},loadFromBlob:function(a){var b,c,d=a.getSource(),e=2097152,f=Math.ceil(d.size/e),g=0,h=this.owner,i=new q.ArrayBuffer,j=this,k=d.mozSlice||d.webkitSlice||d.slice;c=new FileReader,(b=function(){var l,m;l=g*e,m=Math.min(l+e,d.size),c.onload=function(b){i.append(b.target.result),h.trigger("progress",{total:a.size,loaded:m})},c.onloadend=function(){c.onloadend=c.onload=null,++g<f?setTimeout(b,1):setTimeout(function(){h.trigger("load"),j.result=i.end(),b=a=d=i=null,h.trigger("complete")},50)},c.readAsArrayBuffer(k.call(d,l,m))})()},getResult:function(){return this.result}})}),b("runtime/flash/runtime",["base","runtime/runtime","runtime/compbase"],function(b,c,d){function e(){var a;try{a=navigator.plugins["Shockwave Flash"],a=a.description}catch(b){try{a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version")}catch(c){a="0.0"}}return a=a.match(/\d+/g),parseFloat(a[0]+"."+a[1],10)}function f(){function d(a,b){var c,d,e=a.type||a;c=e.split("::"),d=c[0],e=c[1],"Ready"===e&&d===j.uid?j.trigger("ready"):f[d]&&f[d].trigger(e.toLowerCase(),a,b)}var e={},f={},g=this.destroy,j=this,k=b.guid("webuploader_");c.apply(j,arguments),j.type=h,j.exec=function(a,c){var d,g=this,h=g.uid,k=b.slice(arguments,2);return f[h]=g,i[a]&&(e[h]||(e[h]=new i[a](g,j)),d=e[h],d[c])?d[c].apply(d,k):j.flashExec.apply(g,arguments)},a[k]=function(){var a=arguments;setTimeout(function(){d.apply(null,a)},1)},this.jsreciver=k,this.destroy=function(){return g&&g.apply(this,arguments)},this.flashExec=function(a,c){var d=j.getFlash(),e=b.slice(arguments,2);return d.exec(this.uid,a,c,e)}}var g=b.$,h="flash",i={};return b.inherits(c,{constructor:f,init:function(){var a,c=this.getContainer(),d=this.options;c.css({position:"absolute",top:"-8px",left:"-8px",width:"9px",height:"9px",overflow:"hidden"}),a='<object id="'+this.uid+'" type="application/x-shockwave-flash" data="'+d.swf+'" ',b.browser.ie&&(a+='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" '),a+='width="100%" height="100%" style="outline:0"><param name="movie" value="'+d.swf+'" /><param name="flashvars" value="uid='+this.uid+"&jsreciver="+this.jsreciver+'" /><param name="wmode" value="transparent" /><param name="allowscriptaccess" value="always" /></object>',c.html(a)},getFlash:function(){return this._flash?this._flash:(this._flash=g("#"+this.uid).get(0),this._flash)}}),f.register=function(a,c){return c=i[a]=b.inherits(d,g.extend({flashExec:function(){var a=this.owner,b=this.getRuntime();return b.flashExec.apply(a,arguments)}},c))},e()>=11.4&&c.addRuntime(h,f),f}),b("runtime/flash/filepicker",["base","runtime/flash/runtime"],function(a,b){var c=a.$;return b.register("FilePicker",{init:function(a){var b,d,e=c.extend({},a);for(b=e.accept&&e.accept.length,d=0;b>d;d++)e.accept[d].title||(e.accept[d].title="Files");delete e.button,delete e.id,delete e.container,this.flashExec("FilePicker","init",e)},destroy:function(){this.flashExec("FilePicker","destroy")}})}),b("runtime/flash/image",["runtime/flash/runtime"],function(a){return a.register("Image",{loadFromBlob:function(a){var b=this.owner;b.info()&&this.flashExec("Image","info",b.info()),b.meta()&&this.flashExec("Image","meta",b.meta()),this.flashExec("Image","loadFromBlob",a.uid)}})}),b("runtime/flash/transport",["base","runtime/flash/runtime","runtime/client"],function(b,c,d){var e=b.$;return c.register("Transport",{init:function(){this._status=0,this._response=null,this._responseJson=null},send:function(){var a,b=this.owner,c=this.options,d=this._initAjax(),f=b._blob,g=c.server;d.connectRuntime(f.ruid),c.sendAsBinary?(g+=(/\?/.test(g)?"&":"?")+e.param(b._formData),a=f.uid):(e.each(b._formData,function(a,b){d.exec("append",a,b)}),d.exec("appendBlob",c.fileVal,f.uid,c.filename||b._formData.name||"")),this._setRequestHeader(d,c.headers),d.exec("send",{method:c.method,url:g,forceURLStream:c.forceURLStream,mimeType:"application/octet-stream"},a)},getStatus:function(){return this._status},getResponse:function(){return this._response||""},getResponseAsJson:function(){return this._responseJson},abort:function(){var a=this._xhr;a&&(a.exec("abort"),a.destroy(),this._xhr=a=null)},destroy:function(){this.abort()},_initAjax:function(){var b=this,c=new d("XMLHttpRequest");return c.on("uploadprogress progress",function(a){var c=a.loaded/a.total;return c=Math.min(1,Math.max(0,c)),b.trigger("progress",c)}),c.on("load",function(){var d,e=c.exec("getStatus"),f=!1,g="";return c.off(),b._xhr=null,e>=200&&300>e?f=!0:e>=500&&600>e?(f=!0,g="server"):g="http",f&&(b._response=c.exec("getResponse"),b._response=decodeURIComponent(b._response),d=a.JSON&&a.JSON.parse||function(a){try{return new Function("return "+a).call()}catch(b){return{}}},b._responseJson=b._response?d(b._response):{}),c.destroy(),c=null,g?b.trigger("error",g):b.trigger("load")}),c.on("error",function(){c.off(),b._xhr=null,b.trigger("error","http")}),b._xhr=c,c},_setRequestHeader:function(a,b){e.each(b,function(b,c){a.exec("setRequestHeader",b,c)})}})}),b("runtime/flash/blob",["runtime/flash/runtime","lib/blob"],function(a,b){return a.register("Blob",{slice:function(a,c){var d=this.flashExec("Blob","slice",a,c);return new b(d.uid,d)}})}),b("runtime/flash/md5",["runtime/flash/runtime"],function(a){return a.register("Md5",{init:function(){},loadFromBlob:function(a){return this.flashExec("Md5","loadFromBlob",a.uid)}})}),b("preset/all",["base","widgets/filednd","widgets/filepaste","widgets/filepicker","widgets/image","widgets/queue","widgets/runtime","widgets/upload","widgets/validator","widgets/md5","runtime/html5/blob","runtime/html5/dnd","runtime/html5/filepaste","runtime/html5/filepicker","runtime/html5/imagemeta/exif","runtime/html5/androidpatch","runtime/html5/image","runtime/html5/transport","runtime/html5/md5","runtime/flash/filepicker","runtime/flash/image","runtime/flash/transport","runtime/flash/blob","runtime/flash/md5"],function(a){return a}),b("widgets/log",["base","uploader","widgets/widget"],function(a,b){function c(a){var b=e.extend({},d,a),c=f.replace(/^(.*)\?/,"$1"+e.param(b)),g=new Image;g.src=c}var d,e=a.$,f=" http://static.tieba.baidu.com/tb/pms/img/st.gif??",g=(location.hostname||location.host||"protected").toLowerCase(),h=g&&/baidu/i.exec(g);if(h)return d={dv:3,master:"webuploader",online:/test/.exec(g)?0:1,module:"",product:g,type:0},b.register({name:"log",init:function(){var a=this.owner,b=0,d=0;a.on("error",function(a){c({type:2,c_error_code:a})}).on("uploadError",function(a,b){c({type:2,c_error_code:"UPLOAD_ERROR",c_reason:""+b})}).on("uploadComplete",function(a){b++,d+=a.size}).on("uploadFinished",function(){c({c_count:b,c_size:d}),b=d=0}),c({c_usage:1})}})}),b("webuploader",["preset/all","widgets/log"],function(a){return a}),c("webuploader")});
\ 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="";
......
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/swiper-3.4.2.min.css" />
<link rel="stylesheet" type="text/css" href="static/xtba/login/css/style-hn.css">
<link rel="stylesheet" type="text/css" href="/static/xtba/login/css/login.css">
<link rel="stylesheet" type="text/css" href="static/xtba/login/css/animate.min.css">
<style >
/*东莞*/
.dongguan .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/dongguan.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*海南*/
.hainan .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/hainan.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*山西*/
.shanxi .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/shanxi.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*陕西*/
.shanxian .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/shanxian.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*西藏*/
.xizang .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/xizang.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*宁夏*/
.ningxia .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/ningxia.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
/*内蒙*/
.neimeng .radar .radar-map {
color: rgba(19, 182, 206, 0.4);
background: url('/static/xtba/login/images/neimeng.png') center / contain no-repeat;
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
</style>
</head>
<body>
<!--标题-->
<div class="login-header">
<h2><img src="/static/xtba/login/images/login-title-bg-l.png"/><img src="static/xtba/login/images/index_dongguan.png" style="margin-left: 0px;width: 680px;height: 90px;"/><img src="static/xtba/login/images/login-title-bg-r.png"/></h2>
</div>
<!--content-->
<div class="wrap-content">
<div class="lf earth dongguan">
<div class="swiper-container radar-wrap">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="radar ani" swiper-animate-effect="fadeInDown" swiper-animate-duration="2.5s" swiper-animate-delay="0.3s"></div>
</div>
</div>
<div class="swiper-pagination" style="display:none;"></div>
</div>
</div>
<div class="rg login-wrap">
<div class="login-btn" id="login-btn">
<a class="btn-alarm" id="btn-alarm">&nbsp;&nbsp;&nbsp;<img src="static/xtba/login/images/ps.png"/></a>
<a class="btn-pki">PKI证书登录<img src="static/xtba/login/images/usb.png"/></a>
</div>
<div id="dlc" class="dl text" style="display: none;">
<div class="drk">
<p class="username-input"><input class="username" name="username" id="username" type="text"></p>
<p class="password-input"><input class="password" name="password" id="password" type="password"></p>
<span id="loginbut" onclick="doLogin();" class="dran">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span class="back"></span><!-- <span class="tishi" id="nousername">用户名不能为空!</span>
<span class="tishi" id="error">用户名或密码错误!</span> <span class="tishi" id="nopassword">密码不能为空!</span> <span class="tishi tishi1 text" id="lock">当前用户已锁定,请更换用户名重新登录!</span> -->
</div>
</div>
<div class="download">
<p><a class="dw-bg"><span class="top"></span>用户注册<span class="bottom"></span></a></p>
<p><a class="dw-bg" onclick="toFjxz()"><span class="top"></span>附件下载<span class="bottom"></span></a></p>
<p><a class="dw-bg" onclick="toCzsmxz()"><span class="top"></span>操作说明<span class="bottom"></span></a></p>
<p><a class="dw-bg yhglqx"><span class="top"></span>用户管理权限<span class="bottom"></span></a></p>
</div>
<div class="announcement">
<p>系统内容:</p>
<p>1.该系统包含了人员基本信息、人像、指纹、声纹、虹膜、足迹、手机等信息的采集</p>
<p>2.具备针对所采集人员指纹进行采集质量的检查和抽查等功能</p>
<p>3.添加指纹比中信息查询功能</p>
<p>4.新增的全国失踪人员和全国被盗抢机动车查询</p>
</div>
</div>
</div>
<!--footer-->
<div class="footer">技术支持:方正国际软件有限公司</div>
<!-- 加载动画 -->
<div id="loadgif" style="display:none;"><img src="static/xtba/login/images/load.gif"/><p style="line-height:26px;">正在加载数据.....
</p></div>
<!--用户提示-->
<div class="wrap_mask" id="wrap_mask_yhts"></div>
<div class="xtyhts_wrap" id="xtyhts_wrap">
<h1><img src="/static/xtba/login/images/title-yhts.png">刑侦信息专业应用系统应用“九不准”</h1>
<div class="xtyhts_center">
<p>一、非因侦查办案原因,不准使用刑专系统查询获取信息。</p>
<p>二、不准将刑专系统授权数字证书转借他人使用。</p>
<p>三、不准使用刑专系统对案件无关人员进行审查。</p>
<p>四、不准违规申报和审批刑专系统授权用户。</p>
<p>五、不准公开宣传、与无关人员谈论刑专系统及其相关内容。</p>
<p>六、不准泄露、传播或出售刑专系统的各类信息。</p>
<p>七、不准协警使用刑专系统,查看刑专系统信息内容。</p>
<p>八、不准对刑专系统应用违规行为隐瞒不报、包庇袒护。</p>
<p>九、不准非法扫描、入侵刑专系统,扰乱系统正常运行。</p>
<p class="xtyhts_center_p">刑专系统将记录用户应用系统的各项信息,作为信息审计依据。对违反上述规定的民警,按照《公安机关人民警察纪律条令》有关规定给予纪律处分,并视情况依据《公安机关追究领导责任暂行规定》追究相关领导责任;构成犯罪的,依法追究刑事责任。</p>
<div class="btn_div"><a class="close_btn">我 知 道 了</a></div>
</div>
</div>
<script type="text/javascript" src="static/xtba/login/js/jquery-1.11.3.js"></script>
<script type="text/javascript" src="static/xtba/login/js/index-hn.js"></script>
<script type="text/javascript" src="static/xtba/login/js/swiper-3.4.2.jquery.min.js"></script>
<script type="text/javascript" src="static/xtba/login/js/goods.js" ></script>
<script type="text/javascript" src="static/xtba/login/js/swiper.animate.min.js" ></script>
<script>
$(function(){
getHeight();
$(window).resize(function(){
getHeight();
});
//点击警号登录弹出登录框
$("#btn-alarm").click(function(){
$("#dlc").show();
$("#login-btn").hide();
});
//关闭事件
$(".back").click(function() {
$("#login-btn").show();
$("#dlc").hide();
});
var mySwiper = new Swiper('.swiper-container', {
pagination: '.swiper-pagination',
autoplay:7500,
autoplayDisableOnInteraction : false,
paginationClickable: true,
on:{
init: function(){
swiperAnimateCache(this); //隐藏动画元素
swiperAnimate(this); //初始化完成开始动画
},
slideChangeTransitionEnd: function(){
swiperAnimate(this); //每个slide切换结束时也运行当前slide动画
//this.slides.eq(this.activeIndex).find('.ani').removeClass('ani'); 动画只展现一次,去除ani类名
}
},
//回调函数 具体查看swiper文档
onSlideChangeStart: function(swiper){
//因index是从0开始 所以+1
$(".gdp-info-num span").text(swiper.activeIndex+1);
}
});
$("#xtyhts_wrap .close_btn").click(function(){
$("#wrap_mask_yhts").fadeOut();
$("#xtyhts_wrap").fadeOut();
});
});
//获取高度
function getHeight(){
if($(window).height()<=630){
$(".login-btn").css({"margin":"2% auto 3% auto","height":"41%"});
}else if($(window).height()<=768){
$(".login-btn").css({"margin":"6% auto 3% auto","height":"33%"});
$(".wrap-content").css({"height":$(window).height()-180});
}else{
$(".wrap-content").css({"height":$(window).height()-160});
}
$(".radar").css("top",($(".wrap-content").height()-$(".radar").height())/2);
$(".swiper-container,.swiper-slide").css({"width":$(".earth").width(),"height":$(".wrap-content").height(),"overflow":'hidden'});
$(".radar02").css("top",($(".swiper-slide").height()-$(".radar02").height())/2);
$(".radar03").css("top",($(".swiper-slide").height()-$(".radar03").height())/2);
}
document.onkeydown=function(event){
var e = event || window.event || arguments.callee.caller.arguments[0];
if(e && e.keyCode==13){ // enter 键
doLogin()
}
};
function doLogin(){
$("#loadgif").show();
var username=$("#username").val();
var password=$("#password").val();
var perurl="admin";//默认权限
var user;
//$.ajax({
// url:"qxdoLogin",//权限登陆
// data:{"username":username,"password":password},
// type:"post",
// async: false,
// dataType:"json",
// success:function(mgs){
// setTimeout("hide()",500);
// perurl=mgs.perurl;
$.ajax({
url:"doLogin",
data:{"userId":username,"psw":password,"perurl":perurl},
type:"post",
dataType:"json",
async: false,
success:function(data){
var state=data.state;
var msg=data.msg;
user=data.user;
if(state&&state=="success"){
window.location.href="toHome";
}else{
alert(msg);
}
}
});
// }
//});
}
function hide(){
$("#loadgif").hide();
}
function toFjxz(){
window.open('/toFjxz','_blank');
}
function toCzsmxz(){
window.open('/toCzsmxz','_blank');
}
</script>
</body>
</html>
\ No newline at end of file
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 @@
}
}
*/
}
}
......
......@@ -171,6 +171,10 @@
pageList : [10,20,50,100,200], //rows
pageNumber : 1,
loadFilter: function(data){
debugger;
if(data!=null){
window.opener.document.getElementById("sswpifcj").src="/static/rygl/img/yes.png";
}
return data;
}
});
......
......@@ -103,6 +103,7 @@
};
function saveRecord(){
window.opener.document.getElementById("swifcj").src="/static/rygl/img/yes.png";
var record = recorder.getBlob();
var file = new File([record], "voicefile", { type: 'audio/wav' });
var formFile = new FormData();
......
......@@ -29,6 +29,7 @@
<input id="xm" name="xm" class="xm" type="hidden" th:value="${xm}">
<input id="zjhm" name="gmsfhm" class="zjhm" type="hidden" th:value="${zjhm}">
<input id="sbxh" name="sbxh" class="sbxh" type="hidden">
<input id="type" name="type" class="type" type="hidden" th:value="${type}">
<input id="cjtpxh" name="cjtpxh" class="cjtpxh" type="hidden" value="">
......@@ -52,7 +53,7 @@
<!--人员基本信息-->
<div style="width: 100%;">
<p class="div_title" style="width: 80%;"><img src="zjcj/images/jc-icon.png" class="jc-icon" />人员编号:<span th:text="${rybh}"></span>&nbsp;&nbsp;姓名:<span th:text="${xm}"></span>&nbsp;&nbsp;身份证号:<span th:text="${zjhm}"></span></p>
<p class="div_title" style="width: 80%;"><img src="zjcj/images/jc-icon.png" class="jc-icon" />人员编号:<span th:text="${rybh}"></span>&nbsp;&nbsp;姓名:<span th:text="${xm}"></span>&nbsp;&nbsp;身份证号:<span th:text="${zjhm}"></span>&nbsp;&nbsp;&nbsp;&nbsp;<span id="iftstext" style="color: red"></span></p>
<button type="button" onclick="toSave()" style="float: right; height: 40px;margin-top: -30px;width: 100px;height:36px;line-height:36px;border-radius: 5px;border: 1px solid #fff;background:-webkit-linear-gradient(#b7b3b3,#b1b1b1,#828282);cursor: pointer;color:#fff;border: 1px solid #fff;background:-webkit-linear-gradient(#1713ec,#7972e6,#0000f7);color:#fff;"><span>信息保存</span></button>
<div class="condition">
<table style="width:100%;border:none;border-collapse: collapse;text-align:left;" class="cx_table_tj zjxxcjTable">
......@@ -314,6 +315,7 @@
//保存和更新
function toSave(){
window.opener.document.getElementById("zjifcj").src="/static/rygl/img/yes.png";
document.zjcjform.action = "/doSaveZjxx";
document.zjcjform.submit();
}
......@@ -373,7 +375,12 @@
function addZjzpimg() {//初始化数据
debugger;
var type = $("#type").val();
if (type != null && type == "1") {
}else{
$("#iftstext").text("(信息推送至足迹系统失败)");
}
var isflag = $("#isflag").val();
if (isflag != null && isflag == "1") {
$.messager.alert("提示","信息保存成功!");
......
......@@ -384,7 +384,33 @@ function doQuery(){
}
return zwcjsjStr+"|"+jcsjStr;
}},
{title:"检查计时",field:"rjcsj",align:'center',width:100},
{title:"检查计时",field:"zwsx",align:'center',width:100,formatter:function(val,row,index){
var rybh=row.rybh;
var zwsx=row.zwsx;
if(zwsx==null||zwsx==""){
return "未计时";
}else{
var zwsxs = zwsx.split(":");
var cjsj=row.rcjsj;
var cjsjStr=row.cjsjStr;
var nowdate=new Date();
var time1 = new Date(Date.parse(cjsj)).getTime();
var time2 = new Date(Date.parse(nowdate)).getTime();
if(time1>time2){
return "系统时间不正确";
}else{
var m=parseInt((time2-time1)/1000);
var n = (parseInt(zwsxs[0])*60*60+parseInt(zwsxs[1]*60));
if(m>n){
return "<span class='bhg-btn'>检查超时</span>";
}else{
var timenum = n-m;
showNum(rybh,timenum);
return "<span id='"+rybh+"' class='hg-btn'>"+parseInt(timenum/60/60)+":"+parseInt(timenum/60)%60+":"+parseInt(timenum%60)+"</span>";
}
}
}
}},
{title:"检查人",field:"jcr",align:'center',width:85},
{title:"采集<Br/>次数",field:"rcjcs",align:'center',width:65}
];
......@@ -410,6 +436,20 @@ function doQuery(){
}
});
}
//封装一个处理单位数字的函数
function showNum(spanid,timenum) {
var rst = "";
timer = setInterval(function() {
timenum--;
if(timenum>0){
$("#"+spanid).html(parseInt(timenum/60/60)+":"+parseInt(timenum/60)%60+":"+parseInt(timenum%60));
}else{
$("#"+spanid).attr("class","bhg-btn");
$("#"+spanid).html("检查超时");
}
}, 1000)
}
function doClear(){
$("form[name='ryxxForm']") .find("input").val('');
$("#RCjdw").combotree("setValue",'');
......
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