博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javaWeb服务详解【客户端调用】(含源代码,测试通过,注释) ——Dept实体类...
阅读量:6041 次
发布时间:2019-06-20

本文共 2740 字,大约阅读时间需要 9 分钟。

package org.entity;import java.util.ArrayList;import java.util.List;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlType;/** * 

dept complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * 
*
*
*
*
*
*
*
*
*
*
*
*
* * */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "dept", propOrder = { "deptno", "dname", "emps", "loc"})public class Dept { protected Integer deptno; protected String dname; @XmlElement(nillable = true) protected List
emps; protected String loc; /** * 获取deptno属性的值。 * * @return * possible object is * {@link Integer } * */ public Integer getDeptno() { return deptno; } /** * 设置deptno属性的值。 * * @param value * allowed object is * {@link Integer } * */ public void setDeptno(Integer value) { this.deptno = value; } /** * 获取dname属性的值。 * * @return * possible object is * {@link String } * */ public String getDname() { return dname; } /** * 设置dname属性的值。 * * @param value * allowed object is * {@link String } * */ public void setDname(String value) { this.dname = value; } /** * Gets the value of the emps property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the emps property. * *

* For example, to add a new item, do as follows: *

     *    getEmps().add(newItem);     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Emp } * * */ public List

getEmps() { if (emps == null) { emps = new ArrayList
(); } return this.emps; } /** * 获取loc属性的值。 * * @return * possible object is * {@link String } * */ public String getLoc() { return loc; } /** * 设置loc属性的值。 * * @param value * allowed object is * {@link String } * */ public void setLoc(String value) { this.loc = value; }}

转载于:https://www.cnblogs.com/a1111/p/7459659.html

你可能感兴趣的文章
Mysql C API调用存储过程的总结
查看>>
Oracle的层次查询
查看>>
远程调用服务(RPC)和消息(Message Queue)对比及其适用/不适用场合
查看>>
FreeBSD 的 Ports 系统
查看>>
有关web
查看>>
读Nginx官方文档笔记
查看>>
Spring中用了哪些设计模式?
查看>>
centos6.5 修改主机名
查看>>
那些年一起考过的六级---阅读理解6大常考点
查看>>
C# 将DataTable 转成list 泛型
查看>>
我的友情链接
查看>>
自实现 mvc - DispatcherServlet
查看>>
(Mirage系列之三)如何搭建Mirage的环境
查看>>
记录一个inotify的侦听源码
查看>>
linux命令学习(17)-chage
查看>>
揭秘:CIO走向成功的十二条秘笈
查看>>
centos7修改网卡名
查看>>
搭建nfs文件服务器——超详细
查看>>
共用体
查看>>
linux安装中文
查看>>