📄 target.java
字号:
package net.java.workeffort.service.domain;import java.util.Date;/** * Target of an security operation * @author Antony Joseph */public class Target extends BaseDomain { String targetCd; String parentCd; String targetTypeCd; String description; Date lastModifiedTs; String lastModifiedBy; /** * @return Returns the description. */ public String getDescription() { return description; } /** * @param description The description to set. */ public void setDescription(String description) { this.description = description; } /** * @return Returns the lastModifiedBy. */ public String getLastModifiedBy() { return lastModifiedBy; } /** * @param lastModifiedBy The lastModifiedBy to set. */ public void setLastModifiedBy(String lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } /** * @return Returns the lastModifiedTs. */ public Date getLastModifiedTs() { return lastModifiedTs; } /** * @param lastModifiedTs The lastModifiedTs to set. */ public void setLastModifiedTs(Date lastModifiedTs) { this.lastModifiedTs = lastModifiedTs; } /** * @return Returns the parentCd. */ public String getParentCd() { return parentCd; } /** * @param parentCd The parentCd to set. */ public void setParentCd(String parentCd) { this.parentCd = parentCd; } /** * @return Returns the targetCd. */ public String getTargetCd() { return targetCd; } /** * @param targetCd The targetCd to set. */ public void setTargetCd(String targetCd) { this.targetCd = targetCd; } /** * @return Returns the targetTypeCd. */ public String getTargetTypeCd() { return targetTypeCd; } /** * @param targetTypeCd The targetTypeCd to set. */ public void setTargetTypeCd(String targetTypeCd) { this.targetTypeCd = targetTypeCd; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -