搜尋此網誌

2015年6月22日 星期一

Netbean小技巧

技巧一、如何自動產生getter and setter

在java中先寫好參數

EX:

public class project_info extends BaseBO {

    private String projectNo;
    private String projectName;
    private String description;
    private String createTime;
    private String updateTime;
    private String updateBy;
}