2011年5月27日
摘要: Person实体类package com.ljq.domain;public class Person { private Integer id; private String name; private String phone; public Person() { super(); } public Person(String name, String phone) { super(); this.name = name; this.phone = phone; } public Person(Integer id, String name, String phone) { super() 阅读全文
posted @ 2011-05-27 15:09 Ruthless 阅读(10226) 评论(4) 推荐(2)