⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 buldatereflection.java

📁 使用spring ,hibernate 框架的稽查管理系统
💻 JAVA
字号:
package com.je.ims.hibernate;

import java.io.Serializable;
import java.util.Date;

public class BulDateReflection implements Serializable {
	//由於日期格式需要使用民國年,所以定義一個映射類
	private Long bulletinId;
    private String caption;
    private String date1;
    
    public BulDateReflection(){
    
    }
    public BulDateReflection(Long bulletinId,String caption,String date1){
    	this.bulletinId=bulletinId;
    	this.caption=caption;
    	this.date1=date1;
    }
    
    public Long getBulletinId() {
        return this.bulletinId;
    }
    
    public void setBulletinId(Long bulletinId) {
        this.bulletinId = bulletinId;
    }
    public String getCaption() {
        return this.caption;
    }
    
    public void setCaption(String caption) {
        this.caption = caption;
    }
    
    public String getDate1() {
        return this.date1;
    }
    
    public void setDate1(String date1) {
        this.date1 = date1;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -