a36cababf30bb1f625bfdb8a5361f411c4f987d0.svn-base 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2016.07.07 at 05:22:20 PM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.dc.queryCustomData;
  8. import java.io.Serializable;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. import javax.xml.bind.annotation.XmlAccessType;
  12. import javax.xml.bind.annotation.XmlAccessorType;
  13. import javax.xml.bind.annotation.XmlType;
  14. /**
  15. * 查询条件集合
  16. *
  17. * <p>Java class for CustomConds complex type.
  18. *
  19. * <p>The following schema fragment specifies the expected content contained within this class.
  20. *
  21. * <pre>
  22. * &lt;complexType name="CustomConds">
  23. * &lt;complexContent>
  24. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  25. * &lt;sequence>
  26. * &lt;element name="cond" type="{http://dc.soa.csg.cn/}CustomInParam" maxOccurs="unbounded" minOccurs="0"/>
  27. * &lt;/sequence>
  28. * &lt;/restriction>
  29. * &lt;/complexContent>
  30. * &lt;/complexType>
  31. * </pre>
  32. *
  33. *
  34. */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "CustomConds", propOrder = {
  37. "cond"
  38. })
  39. public class CustomConds implements Serializable{
  40. /**
  41. *
  42. */
  43. private static final long serialVersionUID = 2521805238964965677L;
  44. protected List<CustomInParam> cond;
  45. /**
  46. * Gets the value of the cond property.
  47. *
  48. * <p>
  49. * This accessor method returns a reference to the live list,
  50. * not a snapshot. Therefore any modification you make to the
  51. * returned list will be present inside the JAXB object.
  52. * This is why there is not a <CODE>set</CODE> method for the cond property.
  53. *
  54. * <p>
  55. * For example, to add a new item, do as follows:
  56. * <pre>
  57. * getCond().add(newItem);
  58. * </pre>
  59. *
  60. *
  61. * <p>
  62. * Objects of the following type(s) are allowed in the list
  63. * {@link CustomInParam }
  64. *
  65. *
  66. */
  67. public List<CustomInParam> getCond() {
  68. if (cond == null) {
  69. cond = new ArrayList<CustomInParam>();
  70. }
  71. return this.cond;
  72. }
  73. public void setCond(List<CustomInParam> cond) {
  74. this.cond = cond;
  75. }
  76. }