com.sany.masterdata.hr.entity.TdSmJob Maven / Gradle / Ivy
/*
* @(#)TdSmJob.java
*
* Copyright @ 2001-2012 SANY Group Co.,Ltd.
* All right reserved.
*
* 这个软件是属于bbossgroups有限公司机密的和私有信息,不得泄露。
* 并且只能由bbossgroups有限公司内部员工在得到许可的情况下才允许使用。
* This software is the confidential and proprietary information
* of SANY Group Co, Ltd. 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
* SANY Group Co, Ltd.
*/
package com.sany.masterdata.hr.entity;
/**
* TdSmJob.java
* @author caix3
* @since 2012-3-22
*/
public class TdSmJob {
private String jobId;
private String jobName;
private String jobDesc;
public String getJobDesc() {
return jobDesc;
}
public String getJobId() {
return jobId;
}
public String getJobName() {
return jobName;
}
public void setJobDesc(String jobDesc) {
this.jobDesc = jobDesc;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
}