?? duty.java
字號:
/**
*
*/
package com.qrsx.qrsxcrm.model;
/**
* 職務實體對象
* @author Administrator
*
*/
public class Duty
{
private String id; //主鍵
private String dutyName; //職務名稱
private String dutyId; //職務編號
private String description; //職務描述
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the dutyId
*/
public String getDutyId() {
return dutyId;
}
/**
* @param dutyId the dutyId to set
*/
public void setDutyId(String dutyId) {
this.dutyId = dutyId;
}
/**
* @return the dutyName
*/
public String getDutyName() {
return dutyName;
}
/**
* @param dutyName the dutyName to set
*/
public void setDutyName(String dutyName) {
this.dutyName = dutyName;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -