//package com.ynxbd.common.bean; // //import java.io.Serializable; // //import javax.xml.bind.annotation.XmlAccessType; //import javax.xml.bind.annotation.XmlAccessorType; //import javax.xml.bind.annotation.XmlRootElement; //import javax.xml.bind.annotation.XmlType; // ///** // * @Project: 微信公众号 // * @author 张剑峰 // * @date 2017年5月23日下午10:56:18 // * @version v1.0.0 // * @Copyright: 2017 云南新八达科技有限公司 All rights reserved. // */ // //@XmlAccessorType(XmlAccessType.FIELD) //// XML文件中的根标识 //@XmlRootElement(name = "Dept") //// 控制JAXB 绑定类中属性和字段的排序 //@XmlType(propOrder = { "Code", "Name", "Intro", "Address" }) // //public class DeptBean implements Serializable { // private static final long serialVersionUID = 1L; // // String Code; // String Name; // String Intro; // String Address; // // public DeptBean(){ // super(); // } // // public DeptBean(String Code, String Name, String Intro, String Address) { // super(); // this.Code = Code; // this.Name = Name; // this.Intro = Intro; // this.Address = Address; // // } // // public String getCode() { // return Code; // } // // public void setCode(String code) { // Code = code; // } // // public String getName() { // return Name; // } // // public void setName(String name) { // Name = name; // } // // public String getIntro() { // return Intro; // } // // public void setIntro(String intro) { // Intro = intro; // } // // public String getAddress() { // return Address; // } // // public void setAddress(String address) { // Address = address; // } // // @Override // public String toString() { // return "DeptBean [Code=" + Code + ", Name=" + Name + ", Intro=" + Intro + ", Address=" + Address + "]"; // } //}