根据oracle的库表创建java的bean
看看我的数据库和bean吧
数据库 库表:
生成出来的bean
/* * Project: etb * * File Created at 2013-2-22 * * Copyright 2013 Seaway.com Corporation Limited. All rights reserved. * * This software is the confidential and proprietary information of * Seaway Company. (Confidential Information). You shall not * disclose such Confidential Information and shall use it only in* accordance with the terms of the license agreement you entered into * with Seaway.com. */package com.lzg; import java.util.Date; /*** @Type Demo2* @Desc * @author lzg* @date 2013-02-22 16:21:19* @Version V1.0 */public class Demo2 implements java.io.Serializable { /** *key */private Long id; /** *字段1 */private String column1; /** *字段2 */private String column2; /** *字段3 */private Date column3;public Long getId() {return id;}public void setId(Long id) {this.id = id;}public String getColumn1() {return column1;}public void setColumn1(String column1) {this.column1 = column1;}public String getColumn2() {return column2;}public void setColumn2(String column2) {this.column2 = column2;}public Date getColumn3() {return column3;}public void setColumn3(Date column3) {this.column3 = column3;}}
基本功能完成,如果有需要的请下载
http://download.csdn.net/detail/liuzhigang1237/5080857
如果需要源码的话,请点击以下链接下载
http://download.csdn.net/detail/liuzhigang1237/5080872