Commit 01ce88ac authored by 赵啸非's avatar 赵啸非

修改员工属性

parent 7f6c1192
...@@ -202,7 +202,7 @@ CREATE TABLE mortals_xhx_staff( ...@@ -202,7 +202,7 @@ CREATE TABLE mortals_xhx_staff(
`gender` tinyint(2) DEFAULT '1' COMMENT '性别(1.男,2.女)', `gender` tinyint(2) DEFAULT '1' COMMENT '性别(1.男,2.女)',
`birthday` datetime COMMENT '出生日期', `birthday` datetime COMMENT '出生日期',
`photoPath` varchar(255) COMMENT '照片', `photoPath` varchar(255) COMMENT '照片',
`Email` varchar(128) COMMENT '邮件地址', `email` varchar(128) COMMENT '邮件地址',
`phoneNumber` varchar(128) NOT NULL COMMENT '联系电话', `phoneNumber` varchar(128) NOT NULL COMMENT '联系电话',
`idCard` varchar(128) COMMENT '身份证号码', `idCard` varchar(128) COMMENT '身份证号码',
`workNum` varchar(128) COMMENT '工号', `workNum` varchar(128) COMMENT '工号',
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<Field :span="20" label="职位" prop="positionId" v-model="form.positionId" type="select" :enum-data="dict.positionId" placeholder="请输入职位ID"/> <Field :span="20" label="职位" prop="positionId" v-model="form.positionId" type="select" :enum-data="dict.positionId" placeholder="请输入职位ID"/>
<Field :span="20" label="联系电话" prop="phoneNumber" v-model="form.phoneNumber" placeholder="请输入联系电话"/> <Field :span="20" label="联系电话" prop="phoneNumber" v-model="form.phoneNumber" placeholder="请输入联系电话"/>
<Field :span="20" label="头像" prop="photoPath" placeholder="请输入照片"><imageUpload v-model="form.photoPath" prePath="/file/preview"/> </Field> <Field :span="20" label="头像" prop="photoPath" placeholder="请输入照片"><imageUpload v-model="form.photoPath" prePath="/file/preview"/> </Field>
<Field :span="20" label="邮件地址" prop="Email" v-model="form.Email" placeholder="请输入邮件地址"/> <Field :span="20" label="邮件地址" prop="email" v-model="form.email" placeholder="请输入邮件地址"/>
<Field :span="20" label="备注" prop="remark" v-model="form.remark" type="textarea" placeholder="请输入备注"/> <Field :span="20" label="备注" prop="remark" v-model="form.remark" type="textarea" placeholder="请输入备注"/>
...@@ -37,7 +37,33 @@ ...@@ -37,7 +37,33 @@
this.changePath("staff") this.changePath("staff")
}, },
data() { data() {
var checkEmail = (rule, value, callback) => {
let mailReg = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/;
if (!value) { //如果输入为空直接返回
callback();
} else {
//如果字符串 string 中含有与 RegExpObject 匹配的文本,则返回 true,否则返回 false。
if (mailReg.test(value)) { //匹配成功返回
callback();
} else { //匹配不成功返回错误显示
callback(new Error("邮箱格式:xx@xx.xx,只含数字、大小写字母、下划线、横杠"));
}
}
};
var checkPhone = (rule,value,callback) =>{
let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/
if(!value){
callback()
}else{
if(phoneReg.test(value)){
callback()
}else{
callback(new Error("电话格式:13、14、15、17、18开头+9位阿拉伯数字"))
}
}
}
return { return {
// 遮罩层 // 遮罩层
loading: true, loading: true,
// 弹出层标题 // 弹出层标题
...@@ -66,17 +92,21 @@ ...@@ -66,17 +92,21 @@
{required: true,message: "请输入员工姓名", trigger: "blur" }, {required: true,message: "请输入员工姓名", trigger: "blur" },
{max: 64,message: "最多只能录入64个字符",trigger: "blur",}, {max: 64,message: "最多只能录入64个字符",trigger: "blur",},
], ],
positionId: [
{required: true,message: "请选择职位", trigger: "blur" }
],
companyIds: [
{required: true,message: "请选择所属企业", trigger: "blur" }
],
phoneNumber: [ phoneNumber: [
{required: true,message: "请输入联系电话", trigger: "blur" }, {required: true,message: "请输入联系电话", trigger: "blur" },
{max: 128,message: "最多只能录入128个字符",trigger: "blur",}, { validator: checkPhone,trigger: "blur" },
], {max: 11,message: "最多只能录入11个字符",trigger: "blur",},
companyIds: [
{required: true,message: "请输入所属公司", trigger: "blur" },
{max: 128,message: "最多只能录入128个字符",trigger: "blur",},
],
createTime: [
{required: true,message: "请选择创建时间" },
], ],
email: [
{ validator: checkEmail,trigger: "blur" }
],
} }
}; };
}, },
......
...@@ -76,12 +76,12 @@ ...@@ -76,12 +76,12 @@
{label: "联系电话", prop: "phoneNumber"}, {label: "联系电话", prop: "phoneNumber"},
{label: "邮件地址", prop: "Email"}, {label: "邮件地址", prop: "email"},
{label: "所属公司", prop: "companyId",formatter: this.formatters}, {label: "所属公司", prop: "companyIds",formatter: this.formatters},
{label: "职位", prop: "positionName"}, {label: "职位", prop: "positionId",formatter:this.formatter},
{label: "发送名片次数", prop: "sendBusinessCardTimes"}, {label: "发送名片次数", prop: "sendBusinessCardTimes"},
{label: "累计查看次数", prop: "sumViews"}, {label: "累计查看次数", prop: "sumViews"},
......
...@@ -11,110 +11,110 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -11,110 +11,110 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.staff.model.vo.StaffVo; import com.mortals.xhx.module.staff.model.vo.StaffVo;
import lombok.Data; import lombok.Data;
/** /**
* 员工基本信息实体对象 * 员工基本信息实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-09-18 * @date 2023-09-28
*/ */
@Data @Data
public class StaffEntity extends StaffVo { public class StaffEntity extends StaffVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 员工姓名 * 员工姓名
*/ */
private String name; private String name;
/** /**
* 性别(1.男,2.女) * 性别(1.男,2.女)
*/ */
private Integer gender; private Integer gender;
/** /**
* 出生日期 * 出生日期
*/ */
private Date birthday; private Date birthday;
/** /**
* 照片 * 照片
*/ */
private String photoPath; private String photoPath;
/** /**
* 邮件地址 * 联系电话
*/ */
private String Email;
/**
* 联系电话
*/
private String phoneNumber; private String phoneNumber;
/** /**
* 身份证号码 * 身份证号码
*/ */
private String idCard; private String idCard;
/** /**
* 工号 * 工号
*/ */
private String workNum; private String workNum;
/** /**
* 所属公司 * 所属公司
*/ */
private String companyIds; private String companyIds;
/** /**
* 所属公司名称 * 所属公司名称
*/ */
private String companyName; private String companyName;
/** /**
* 职位ID * 职位ID
*/ */
private Long positionId; private Long positionId;
/** /**
* 职位名称 * 职位名称
*/ */
private String positionName; private String positionName;
/** /**
* 员工类型(1.全职,2.兼职,3.实习) * 员工类型(1.全职,2.兼职,3.实习)
*/ */
private Integer staffType; private Integer staffType;
/** /**
* 员工状态(1.正式,2.试用,3.离职) * 员工状态(1.正式,2.试用,3.离职)
*/ */
private Integer staffStatus; private Integer staffStatus;
/** /**
* 员工来源(1.企业内部,2.外部人员) * 员工来源(1.企业内部,2.外部人员)
*/ */
private Integer source; private Integer source;
/** /**
* 入职登记表 * 入职登记表
*/ */
private String registerPath; private String registerPath;
/** /**
* 入职时间 * 入职时间
*/ */
private Date entryDate; private Date entryDate;
/** /**
* 转正时间 * 转正时间
*/ */
private Date regularDate; private Date regularDate;
/** /**
* 离职时间 * 离职时间
*/ */
private Date leaveDate; private Date leaveDate;
/** /**
* 备注 * 备注
*/ */
private String remark; private String remark;
/** /**
* 累计查看次数 * 累计查看次数
*/ */
private Integer sumViews; private Integer sumViews;
/** /**
* 当日查看次数 * 当日查看次数
*/ */
private Integer viewsByDay; private Integer viewsByDay;
/** /**
* 发送名片次数 * 发送名片次数
*/ */
private Integer sendBusinessCardTimes; private Integer sendBusinessCardTimes;
/**
* 邮件地址
*/
private String email;
@Override @Override
public int hashCode() { public int hashCode() {
return this.getId().hashCode(); return this.getId().hashCode();
} }
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
...@@ -122,35 +122,35 @@ public class StaffEntity extends StaffVo { ...@@ -122,35 +122,35 @@ public class StaffEntity extends StaffVo {
if (obj instanceof StaffEntity) { if (obj instanceof StaffEntity) {
StaffEntity tmp = (StaffEntity) obj; StaffEntity tmp = (StaffEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
} }
public void initAttrValue(){ public void initAttrValue(){
this.name = ""; this.name = "";
this.gender = 1; this.gender = 1;
this.birthday = new Date(); this.birthday = new Date();
this.photoPath = ""; this.photoPath = "";
this.Email = ""; this.phoneNumber = "";
this.phoneNumber = ""; this.idCard = "";
this.idCard = ""; this.workNum = "";
this.workNum = ""; this.companyIds = null;
this.companyIds = null; this.companyName = "";
this.companyName = ""; this.positionId = null;
this.positionId = null; this.positionName = "";
this.positionName = ""; this.staffType = 1;
this.staffType = 1; this.staffStatus = 1;
this.staffStatus = 1; this.source = 1;
this.source = 1; this.registerPath = "";
this.registerPath = ""; this.entryDate = new Date();
this.entryDate = new Date(); this.regularDate = new Date();
this.regularDate = new Date(); this.leaveDate = new Date();
this.leaveDate = new Date(); this.remark = "";
this.remark = ""; this.sumViews = 0;
this.sumViews = 0; this.viewsByDay = 0;
this.viewsByDay = 0; this.sendBusinessCardTimes = 0;
this.sendBusinessCardTimes = 0; this.email = "";
} }
} }
\ No newline at end of file
...@@ -4,11 +4,11 @@ import java.util.Date; ...@@ -4,11 +4,11 @@ import java.util.Date;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.staff.model.StaffEntity; import com.mortals.xhx.module.staff.model.StaffEntity;
/** /**
* 员工基本信息查询对象 * 员工基本信息查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-09-18 * @date 2023-09-28
*/ */
public class StaffQuery extends StaffEntity { public class StaffQuery extends StaffEntity {
/** 开始 序号,主键,自增长 */ /** 开始 序号,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -56,11 +56,6 @@ public class StaffQuery extends StaffEntity { ...@@ -56,11 +56,6 @@ public class StaffQuery extends StaffEntity {
/** 照片排除列表 */ /** 照片排除列表 */
private List <String> photoPathNotList; private List <String> photoPathNotList;
/** 邮件地址 */
private List<String> EmailList;
/** 邮件地址排除列表 */
private List <String> EmailNotList;
/** 联系电话 */ /** 联系电话 */
private List<String> phoneNumberList; private List<String> phoneNumberList;
...@@ -266,6 +261,11 @@ public class StaffQuery extends StaffEntity { ...@@ -266,6 +261,11 @@ public class StaffQuery extends StaffEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 邮件地址 */
private List<String> emailList;
/** 邮件地址排除列表 */
private List <String> emailNotList;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */ /** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private List<StaffQuery> orConditionList; private List<StaffQuery> orConditionList;
...@@ -275,2277 +275,2277 @@ public class StaffQuery extends StaffEntity { ...@@ -275,2277 +275,2277 @@ public class StaffQuery extends StaffEntity {
public StaffQuery(){} public StaffQuery(){}
/** /**
* 获取 开始 序号,主键,自增长 * 获取 开始 序号,主键,自增长
* @return idStart * @return idStart
*/ */
public Long getIdStart(){ public Long getIdStart(){
return this.idStart; return this.idStart;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public void setIdStart(Long idStart){ public void setIdStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
} }
/** /**
* 获取 结束 序号,主键,自增长 * 获取 结束 序号,主键,自增长
* @return $idEnd * @return $idEnd
*/ */
public Long getIdEnd(){ public Long getIdEnd(){
return this.idEnd; return this.idEnd;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public void setIdEnd(Long idEnd){ public void setIdEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
} }
/** /**
* 获取 增加 序号,主键,自增长 * 获取 增加 序号,主键,自增长
* @return idIncrement * @return idIncrement
*/ */
public Long getIdIncrement(){ public Long getIdIncrement(){
return this.idIncrement; return this.idIncrement;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public void setIdIncrement(Long idIncrement){ public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idList * @return idList
*/ */
public List<Long> getIdList(){ public List<Long> getIdList(){
return this.idList; return this.idList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public void setIdList(List<Long> idList){ public void setIdList(List<Long> idList){
this.idList = idList; this.idList = idList;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idNotList * @return idNotList
*/ */
public List<Long> getIdNotList(){ public List<Long> getIdNotList(){
return this.idNotList; return this.idNotList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idNotList * @param idNotList
*/ */
public void setIdNotList(List<Long> idNotList){ public void setIdNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
} }
/** /**
* 获取 员工姓名 * 获取 员工姓名
* @return nameList * @return nameList
*/ */
public List<String> getNameList(){ public List<String> getNameList(){
return this.nameList; return this.nameList;
} }
/** /**
* 设置 员工姓名 * 设置 员工姓名
* @param nameList * @param nameList
*/ */
public void setNameList(List<String> nameList){ public void setNameList(List<String> nameList){
this.nameList = nameList; this.nameList = nameList;
} }
/** /**
* 获取 员工姓名 * 获取 员工姓名
* @return nameNotList * @return nameNotList
*/ */
public List<String> getNameNotList(){ public List<String> getNameNotList(){
return this.nameNotList; return this.nameNotList;
} }
/** /**
* 设置 员工姓名 * 设置 员工姓名
* @param nameNotList * @param nameNotList
*/ */
public void setNameNotList(List<String> nameNotList){ public void setNameNotList(List<String> nameNotList){
this.nameNotList = nameNotList; this.nameNotList = nameNotList;
} }
/** /**
* 获取 开始 性别(1.男,2.女) * 获取 开始 性别(1.男,2.女)
* @return genderStart * @return genderStart
*/ */
public Integer getGenderStart(){ public Integer getGenderStart(){
return this.genderStart; return this.genderStart;
} }
/** /**
* 设置 开始 性别(1.男,2.女) * 设置 开始 性别(1.男,2.女)
* @param genderStart * @param genderStart
*/ */
public void setGenderStart(Integer genderStart){ public void setGenderStart(Integer genderStart){
this.genderStart = genderStart; this.genderStart = genderStart;
} }
/** /**
* 获取 结束 性别(1.男,2.女) * 获取 结束 性别(1.男,2.女)
* @return $genderEnd * @return $genderEnd
*/ */
public Integer getGenderEnd(){ public Integer getGenderEnd(){
return this.genderEnd; return this.genderEnd;
} }
/** /**
* 设置 结束 性别(1.男,2.女) * 设置 结束 性别(1.男,2.女)
* @param genderEnd * @param genderEnd
*/ */
public void setGenderEnd(Integer genderEnd){ public void setGenderEnd(Integer genderEnd){
this.genderEnd = genderEnd; this.genderEnd = genderEnd;
} }
/** /**
* 获取 增加 性别(1.男,2.女) * 获取 增加 性别(1.男,2.女)
* @return genderIncrement * @return genderIncrement
*/ */
public Integer getGenderIncrement(){ public Integer getGenderIncrement(){
return this.genderIncrement; return this.genderIncrement;
} }
/** /**
* 设置 增加 性别(1.男,2.女) * 设置 增加 性别(1.男,2.女)
* @param genderIncrement * @param genderIncrement
*/ */
public void setGenderIncrement(Integer genderIncrement){ public void setGenderIncrement(Integer genderIncrement){
this.genderIncrement = genderIncrement; this.genderIncrement = genderIncrement;
} }
/** /**
* 获取 性别(1.男,2.女) * 获取 性别(1.男,2.女)
* @return genderList * @return genderList
*/ */
public List<Integer> getGenderList(){ public List<Integer> getGenderList(){
return this.genderList; return this.genderList;
} }
/** /**
* 设置 性别(1.男,2.女) * 设置 性别(1.男,2.女)
* @param genderList * @param genderList
*/ */
public void setGenderList(List<Integer> genderList){ public void setGenderList(List<Integer> genderList){
this.genderList = genderList; this.genderList = genderList;
} }
/** /**
* 获取 性别(1.男,2.女) * 获取 性别(1.男,2.女)
* @return genderNotList * @return genderNotList
*/ */
public List<Integer> getGenderNotList(){ public List<Integer> getGenderNotList(){
return this.genderNotList; return this.genderNotList;
} }
/** /**
* 设置 性别(1.男,2.女) * 设置 性别(1.男,2.女)
* @param genderNotList * @param genderNotList
*/ */
public void setGenderNotList(List<Integer> genderNotList){ public void setGenderNotList(List<Integer> genderNotList){
this.genderNotList = genderNotList; this.genderNotList = genderNotList;
} }
/** /**
* 获取 开始 出生日期 * 获取 开始 出生日期
* @return birthdayStart * @return birthdayStart
*/ */
public String getBirthdayStart(){ public String getBirthdayStart(){
return this.birthdayStart; return this.birthdayStart;
} }
/** /**
* 设置 开始 出生日期 * 设置 开始 出生日期
* @param birthdayStart * @param birthdayStart
*/ */
public void setBirthdayStart(String birthdayStart){ public void setBirthdayStart(String birthdayStart){
this.birthdayStart = birthdayStart; this.birthdayStart = birthdayStart;
} }
/** /**
* 获取 结束 出生日期 * 获取 结束 出生日期
* @return birthdayEnd * @return birthdayEnd
*/ */
public String getBirthdayEnd(){ public String getBirthdayEnd(){
return this.birthdayEnd; return this.birthdayEnd;
} }
/** /**
* 设置 结束 出生日期 * 设置 结束 出生日期
* @param birthdayEnd * @param birthdayEnd
*/ */
public void setBirthdayEnd(String birthdayEnd){ public void setBirthdayEnd(String birthdayEnd){
this.birthdayEnd = birthdayEnd; this.birthdayEnd = birthdayEnd;
} }
/** /**
* 获取 照片 * 获取 照片
* @return photoPathList * @return photoPathList
*/ */
public List<String> getPhotoPathList(){ public List<String> getPhotoPathList(){
return this.photoPathList; return this.photoPathList;
} }
/** /**
* 设置 照片 * 设置 照片
* @param photoPathList * @param photoPathList
*/ */
public void setPhotoPathList(List<String> photoPathList){ public void setPhotoPathList(List<String> photoPathList){
this.photoPathList = photoPathList; this.photoPathList = photoPathList;
} }
/** /**
* 获取 照片 * 获取 照片
* @return photoPathNotList * @return photoPathNotList
*/ */
public List<String> getPhotoPathNotList(){ public List<String> getPhotoPathNotList(){
return this.photoPathNotList; return this.photoPathNotList;
} }
/** /**
* 设置 照片 * 设置 照片
* @param photoPathNotList * @param photoPathNotList
*/ */
public void setPhotoPathNotList(List<String> photoPathNotList){ public void setPhotoPathNotList(List<String> photoPathNotList){
this.photoPathNotList = photoPathNotList; this.photoPathNotList = photoPathNotList;
} }
/** /**
* 获取 邮件地址 * 获取 联系电话
* @return EmailList * @return phoneNumberList
*/ */
public List<String> getEmailList(){
return this.EmailList;
}
/**
* 设置 邮件地址
* @param EmailList
*/
public void setEmailList(List<String> EmailList){
this.EmailList = EmailList;
}
/**
* 获取 邮件地址
* @return EmailNotList
*/
public List<String> getEmailNotList(){
return this.EmailNotList;
}
/**
* 设置 邮件地址
* @param EmailNotList
*/
public void setEmailNotList(List<String> EmailNotList){
this.EmailNotList = EmailNotList;
}
/**
* 获取 联系电话
* @return phoneNumberList
*/
public List<String> getPhoneNumberList(){ public List<String> getPhoneNumberList(){
return this.phoneNumberList; return this.phoneNumberList;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param phoneNumberList * @param phoneNumberList
*/ */
public void setPhoneNumberList(List<String> phoneNumberList){ public void setPhoneNumberList(List<String> phoneNumberList){
this.phoneNumberList = phoneNumberList; this.phoneNumberList = phoneNumberList;
} }
/** /**
* 获取 联系电话 * 获取 联系电话
* @return phoneNumberNotList * @return phoneNumberNotList
*/ */
public List<String> getPhoneNumberNotList(){ public List<String> getPhoneNumberNotList(){
return this.phoneNumberNotList; return this.phoneNumberNotList;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param phoneNumberNotList * @param phoneNumberNotList
*/ */
public void setPhoneNumberNotList(List<String> phoneNumberNotList){ public void setPhoneNumberNotList(List<String> phoneNumberNotList){
this.phoneNumberNotList = phoneNumberNotList; this.phoneNumberNotList = phoneNumberNotList;
} }
/** /**
* 获取 身份证号码 * 获取 身份证号码
* @return idCardList * @return idCardList
*/ */
public List<String> getIdCardList(){ public List<String> getIdCardList(){
return this.idCardList; return this.idCardList;
} }
/** /**
* 设置 身份证号码 * 设置 身份证号码
* @param idCardList * @param idCardList
*/ */
public void setIdCardList(List<String> idCardList){ public void setIdCardList(List<String> idCardList){
this.idCardList = idCardList; this.idCardList = idCardList;
} }
/** /**
* 获取 身份证号码 * 获取 身份证号码
* @return idCardNotList * @return idCardNotList
*/ */
public List<String> getIdCardNotList(){ public List<String> getIdCardNotList(){
return this.idCardNotList; return this.idCardNotList;
} }
/** /**
* 设置 身份证号码 * 设置 身份证号码
* @param idCardNotList * @param idCardNotList
*/ */
public void setIdCardNotList(List<String> idCardNotList){ public void setIdCardNotList(List<String> idCardNotList){
this.idCardNotList = idCardNotList; this.idCardNotList = idCardNotList;
} }
/** /**
* 获取 工号 * 获取 工号
* @return workNumList * @return workNumList
*/ */
public List<String> getWorkNumList(){ public List<String> getWorkNumList(){
return this.workNumList; return this.workNumList;
} }
/** /**
* 设置 工号 * 设置 工号
* @param workNumList * @param workNumList
*/ */
public void setWorkNumList(List<String> workNumList){ public void setWorkNumList(List<String> workNumList){
this.workNumList = workNumList; this.workNumList = workNumList;
} }
/** /**
* 获取 工号 * 获取 工号
* @return workNumNotList * @return workNumNotList
*/ */
public List<String> getWorkNumNotList(){ public List<String> getWorkNumNotList(){
return this.workNumNotList; return this.workNumNotList;
} }
/** /**
* 设置 工号 * 设置 工号
* @param workNumNotList * @param workNumNotList
*/ */
public void setWorkNumNotList(List<String> workNumNotList){ public void setWorkNumNotList(List<String> workNumNotList){
this.workNumNotList = workNumNotList; this.workNumNotList = workNumNotList;
} }
/** /**
* 获取 所属公司 * 获取 所属公司
* @return companyIdsList * @return companyIdsList
*/ */
public List<String> getCompanyIdsList(){ public List<String> getCompanyIdsList(){
return this.companyIdsList; return this.companyIdsList;
} }
/** /**
* 设置 所属公司 * 设置 所属公司
* @param companyIdsList * @param companyIdsList
*/ */
public void setCompanyIdsList(List<String> companyIdsList){ public void setCompanyIdsList(List<String> companyIdsList){
this.companyIdsList = companyIdsList; this.companyIdsList = companyIdsList;
} }
/** /**
* 获取 所属公司 * 获取 所属公司
* @return companyIdsNotList * @return companyIdsNotList
*/ */
public List<String> getCompanyIdsNotList(){ public List<String> getCompanyIdsNotList(){
return this.companyIdsNotList; return this.companyIdsNotList;
} }
/** /**
* 设置 所属公司 * 设置 所属公司
* @param companyIdsNotList * @param companyIdsNotList
*/ */
public void setCompanyIdsNotList(List<String> companyIdsNotList){ public void setCompanyIdsNotList(List<String> companyIdsNotList){
this.companyIdsNotList = companyIdsNotList; this.companyIdsNotList = companyIdsNotList;
} }
/** /**
* 获取 所属公司名称 * 获取 所属公司名称
* @return companyNameList * @return companyNameList
*/ */
public List<String> getCompanyNameList(){ public List<String> getCompanyNameList(){
return this.companyNameList; return this.companyNameList;
} }
/** /**
* 设置 所属公司名称 * 设置 所属公司名称
* @param companyNameList * @param companyNameList
*/ */
public void setCompanyNameList(List<String> companyNameList){ public void setCompanyNameList(List<String> companyNameList){
this.companyNameList = companyNameList; this.companyNameList = companyNameList;
} }
/** /**
* 获取 所属公司名称 * 获取 所属公司名称
* @return companyNameNotList * @return companyNameNotList
*/ */
public List<String> getCompanyNameNotList(){ public List<String> getCompanyNameNotList(){
return this.companyNameNotList; return this.companyNameNotList;
} }
/** /**
* 设置 所属公司名称 * 设置 所属公司名称
* @param companyNameNotList * @param companyNameNotList
*/ */
public void setCompanyNameNotList(List<String> companyNameNotList){ public void setCompanyNameNotList(List<String> companyNameNotList){
this.companyNameNotList = companyNameNotList; this.companyNameNotList = companyNameNotList;
} }
/** /**
* 获取 开始 职位ID * 获取 开始 职位ID
* @return positionIdStart * @return positionIdStart
*/ */
public Long getPositionIdStart(){ public Long getPositionIdStart(){
return this.positionIdStart; return this.positionIdStart;
} }
/** /**
* 设置 开始 职位ID * 设置 开始 职位ID
* @param positionIdStart * @param positionIdStart
*/ */
public void setPositionIdStart(Long positionIdStart){ public void setPositionIdStart(Long positionIdStart){
this.positionIdStart = positionIdStart; this.positionIdStart = positionIdStart;
} }
/** /**
* 获取 结束 职位ID * 获取 结束 职位ID
* @return $positionIdEnd * @return $positionIdEnd
*/ */
public Long getPositionIdEnd(){ public Long getPositionIdEnd(){
return this.positionIdEnd; return this.positionIdEnd;
} }
/** /**
* 设置 结束 职位ID * 设置 结束 职位ID
* @param positionIdEnd * @param positionIdEnd
*/ */
public void setPositionIdEnd(Long positionIdEnd){ public void setPositionIdEnd(Long positionIdEnd){
this.positionIdEnd = positionIdEnd; this.positionIdEnd = positionIdEnd;
} }
/** /**
* 获取 增加 职位ID * 获取 增加 职位ID
* @return positionIdIncrement * @return positionIdIncrement
*/ */
public Long getPositionIdIncrement(){ public Long getPositionIdIncrement(){
return this.positionIdIncrement; return this.positionIdIncrement;
} }
/** /**
* 设置 增加 职位ID * 设置 增加 职位ID
* @param positionIdIncrement * @param positionIdIncrement
*/ */
public void setPositionIdIncrement(Long positionIdIncrement){ public void setPositionIdIncrement(Long positionIdIncrement){
this.positionIdIncrement = positionIdIncrement; this.positionIdIncrement = positionIdIncrement;
} }
/** /**
* 获取 职位ID * 获取 职位ID
* @return positionIdList * @return positionIdList
*/ */
public List<Long> getPositionIdList(){ public List<Long> getPositionIdList(){
return this.positionIdList; return this.positionIdList;
} }
/** /**
* 设置 职位ID * 设置 职位ID
* @param positionIdList * @param positionIdList
*/ */
public void setPositionIdList(List<Long> positionIdList){ public void setPositionIdList(List<Long> positionIdList){
this.positionIdList = positionIdList; this.positionIdList = positionIdList;
} }
/** /**
* 获取 职位ID * 获取 职位ID
* @return positionIdNotList * @return positionIdNotList
*/ */
public List<Long> getPositionIdNotList(){ public List<Long> getPositionIdNotList(){
return this.positionIdNotList; return this.positionIdNotList;
} }
/** /**
* 设置 职位ID * 设置 职位ID
* @param positionIdNotList * @param positionIdNotList
*/ */
public void setPositionIdNotList(List<Long> positionIdNotList){ public void setPositionIdNotList(List<Long> positionIdNotList){
this.positionIdNotList = positionIdNotList; this.positionIdNotList = positionIdNotList;
} }
/** /**
* 获取 职位名称 * 获取 职位名称
* @return positionNameList * @return positionNameList
*/ */
public List<String> getPositionNameList(){ public List<String> getPositionNameList(){
return this.positionNameList; return this.positionNameList;
} }
/** /**
* 设置 职位名称 * 设置 职位名称
* @param positionNameList * @param positionNameList
*/ */
public void setPositionNameList(List<String> positionNameList){ public void setPositionNameList(List<String> positionNameList){
this.positionNameList = positionNameList; this.positionNameList = positionNameList;
} }
/** /**
* 获取 职位名称 * 获取 职位名称
* @return positionNameNotList * @return positionNameNotList
*/ */
public List<String> getPositionNameNotList(){ public List<String> getPositionNameNotList(){
return this.positionNameNotList; return this.positionNameNotList;
} }
/** /**
* 设置 职位名称 * 设置 职位名称
* @param positionNameNotList * @param positionNameNotList
*/ */
public void setPositionNameNotList(List<String> positionNameNotList){ public void setPositionNameNotList(List<String> positionNameNotList){
this.positionNameNotList = positionNameNotList; this.positionNameNotList = positionNameNotList;
} }
/** /**
* 获取 开始 员工类型(1.全职,2.兼职,3.实习) * 获取 开始 员工类型(1.全职,2.兼职,3.实习)
* @return staffTypeStart * @return staffTypeStart
*/ */
public Integer getStaffTypeStart(){ public Integer getStaffTypeStart(){
return this.staffTypeStart; return this.staffTypeStart;
} }
/** /**
* 设置 开始 员工类型(1.全职,2.兼职,3.实习) * 设置 开始 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeStart * @param staffTypeStart
*/ */
public void setStaffTypeStart(Integer staffTypeStart){ public void setStaffTypeStart(Integer staffTypeStart){
this.staffTypeStart = staffTypeStart; this.staffTypeStart = staffTypeStart;
} }
/** /**
* 获取 结束 员工类型(1.全职,2.兼职,3.实习) * 获取 结束 员工类型(1.全职,2.兼职,3.实习)
* @return $staffTypeEnd * @return $staffTypeEnd
*/ */
public Integer getStaffTypeEnd(){ public Integer getStaffTypeEnd(){
return this.staffTypeEnd; return this.staffTypeEnd;
} }
/** /**
* 设置 结束 员工类型(1.全职,2.兼职,3.实习) * 设置 结束 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeEnd * @param staffTypeEnd
*/ */
public void setStaffTypeEnd(Integer staffTypeEnd){ public void setStaffTypeEnd(Integer staffTypeEnd){
this.staffTypeEnd = staffTypeEnd; this.staffTypeEnd = staffTypeEnd;
} }
/** /**
* 获取 增加 员工类型(1.全职,2.兼职,3.实习) * 获取 增加 员工类型(1.全职,2.兼职,3.实习)
* @return staffTypeIncrement * @return staffTypeIncrement
*/ */
public Integer getStaffTypeIncrement(){ public Integer getStaffTypeIncrement(){
return this.staffTypeIncrement; return this.staffTypeIncrement;
} }
/** /**
* 设置 增加 员工类型(1.全职,2.兼职,3.实习) * 设置 增加 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeIncrement * @param staffTypeIncrement
*/ */
public void setStaffTypeIncrement(Integer staffTypeIncrement){ public void setStaffTypeIncrement(Integer staffTypeIncrement){
this.staffTypeIncrement = staffTypeIncrement; this.staffTypeIncrement = staffTypeIncrement;
} }
/** /**
* 获取 员工类型(1.全职,2.兼职,3.实习) * 获取 员工类型(1.全职,2.兼职,3.实习)
* @return staffTypeList * @return staffTypeList
*/ */
public List<Integer> getStaffTypeList(){ public List<Integer> getStaffTypeList(){
return this.staffTypeList; return this.staffTypeList;
} }
/** /**
* 设置 员工类型(1.全职,2.兼职,3.实习) * 设置 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeList * @param staffTypeList
*/ */
public void setStaffTypeList(List<Integer> staffTypeList){ public void setStaffTypeList(List<Integer> staffTypeList){
this.staffTypeList = staffTypeList; this.staffTypeList = staffTypeList;
} }
/** /**
* 获取 员工类型(1.全职,2.兼职,3.实习) * 获取 员工类型(1.全职,2.兼职,3.实习)
* @return staffTypeNotList * @return staffTypeNotList
*/ */
public List<Integer> getStaffTypeNotList(){ public List<Integer> getStaffTypeNotList(){
return this.staffTypeNotList; return this.staffTypeNotList;
} }
/** /**
* 设置 员工类型(1.全职,2.兼职,3.实习) * 设置 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeNotList * @param staffTypeNotList
*/ */
public void setStaffTypeNotList(List<Integer> staffTypeNotList){ public void setStaffTypeNotList(List<Integer> staffTypeNotList){
this.staffTypeNotList = staffTypeNotList; this.staffTypeNotList = staffTypeNotList;
} }
/** /**
* 获取 开始 员工状态(1.正式,2.试用,3.离职) * 获取 开始 员工状态(1.正式,2.试用,3.离职)
* @return staffStatusStart * @return staffStatusStart
*/ */
public Integer getStaffStatusStart(){ public Integer getStaffStatusStart(){
return this.staffStatusStart; return this.staffStatusStart;
} }
/** /**
* 设置 开始 员工状态(1.正式,2.试用,3.离职) * 设置 开始 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusStart * @param staffStatusStart
*/ */
public void setStaffStatusStart(Integer staffStatusStart){ public void setStaffStatusStart(Integer staffStatusStart){
this.staffStatusStart = staffStatusStart; this.staffStatusStart = staffStatusStart;
} }
/** /**
* 获取 结束 员工状态(1.正式,2.试用,3.离职) * 获取 结束 员工状态(1.正式,2.试用,3.离职)
* @return $staffStatusEnd * @return $staffStatusEnd
*/ */
public Integer getStaffStatusEnd(){ public Integer getStaffStatusEnd(){
return this.staffStatusEnd; return this.staffStatusEnd;
} }
/** /**
* 设置 结束 员工状态(1.正式,2.试用,3.离职) * 设置 结束 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusEnd * @param staffStatusEnd
*/ */
public void setStaffStatusEnd(Integer staffStatusEnd){ public void setStaffStatusEnd(Integer staffStatusEnd){
this.staffStatusEnd = staffStatusEnd; this.staffStatusEnd = staffStatusEnd;
} }
/** /**
* 获取 增加 员工状态(1.正式,2.试用,3.离职) * 获取 增加 员工状态(1.正式,2.试用,3.离职)
* @return staffStatusIncrement * @return staffStatusIncrement
*/ */
public Integer getStaffStatusIncrement(){ public Integer getStaffStatusIncrement(){
return this.staffStatusIncrement; return this.staffStatusIncrement;
} }
/** /**
* 设置 增加 员工状态(1.正式,2.试用,3.离职) * 设置 增加 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusIncrement * @param staffStatusIncrement
*/ */
public void setStaffStatusIncrement(Integer staffStatusIncrement){ public void setStaffStatusIncrement(Integer staffStatusIncrement){
this.staffStatusIncrement = staffStatusIncrement; this.staffStatusIncrement = staffStatusIncrement;
} }
/** /**
* 获取 员工状态(1.正式,2.试用,3.离职) * 获取 员工状态(1.正式,2.试用,3.离职)
* @return staffStatusList * @return staffStatusList
*/ */
public List<Integer> getStaffStatusList(){ public List<Integer> getStaffStatusList(){
return this.staffStatusList; return this.staffStatusList;
} }
/** /**
* 设置 员工状态(1.正式,2.试用,3.离职) * 设置 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusList * @param staffStatusList
*/ */
public void setStaffStatusList(List<Integer> staffStatusList){ public void setStaffStatusList(List<Integer> staffStatusList){
this.staffStatusList = staffStatusList; this.staffStatusList = staffStatusList;
} }
/** /**
* 获取 员工状态(1.正式,2.试用,3.离职) * 获取 员工状态(1.正式,2.试用,3.离职)
* @return staffStatusNotList * @return staffStatusNotList
*/ */
public List<Integer> getStaffStatusNotList(){ public List<Integer> getStaffStatusNotList(){
return this.staffStatusNotList; return this.staffStatusNotList;
} }
/** /**
* 设置 员工状态(1.正式,2.试用,3.离职) * 设置 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusNotList * @param staffStatusNotList
*/ */
public void setStaffStatusNotList(List<Integer> staffStatusNotList){ public void setStaffStatusNotList(List<Integer> staffStatusNotList){
this.staffStatusNotList = staffStatusNotList; this.staffStatusNotList = staffStatusNotList;
} }
/** /**
* 获取 开始 员工来源(1.企业内部,2.外部人员) * 获取 开始 员工来源(1.企业内部,2.外部人员)
* @return sourceStart * @return sourceStart
*/ */
public Integer getSourceStart(){ public Integer getSourceStart(){
return this.sourceStart; return this.sourceStart;
} }
/** /**
* 设置 开始 员工来源(1.企业内部,2.外部人员) * 设置 开始 员工来源(1.企业内部,2.外部人员)
* @param sourceStart * @param sourceStart
*/ */
public void setSourceStart(Integer sourceStart){ public void setSourceStart(Integer sourceStart){
this.sourceStart = sourceStart; this.sourceStart = sourceStart;
} }
/** /**
* 获取 结束 员工来源(1.企业内部,2.外部人员) * 获取 结束 员工来源(1.企业内部,2.外部人员)
* @return $sourceEnd * @return $sourceEnd
*/ */
public Integer getSourceEnd(){ public Integer getSourceEnd(){
return this.sourceEnd; return this.sourceEnd;
} }
/** /**
* 设置 结束 员工来源(1.企业内部,2.外部人员) * 设置 结束 员工来源(1.企业内部,2.外部人员)
* @param sourceEnd * @param sourceEnd
*/ */
public void setSourceEnd(Integer sourceEnd){ public void setSourceEnd(Integer sourceEnd){
this.sourceEnd = sourceEnd; this.sourceEnd = sourceEnd;
} }
/** /**
* 获取 增加 员工来源(1.企业内部,2.外部人员) * 获取 增加 员工来源(1.企业内部,2.外部人员)
* @return sourceIncrement * @return sourceIncrement
*/ */
public Integer getSourceIncrement(){ public Integer getSourceIncrement(){
return this.sourceIncrement; return this.sourceIncrement;
} }
/** /**
* 设置 增加 员工来源(1.企业内部,2.外部人员) * 设置 增加 员工来源(1.企业内部,2.外部人员)
* @param sourceIncrement * @param sourceIncrement
*/ */
public void setSourceIncrement(Integer sourceIncrement){ public void setSourceIncrement(Integer sourceIncrement){
this.sourceIncrement = sourceIncrement; this.sourceIncrement = sourceIncrement;
} }
/** /**
* 获取 员工来源(1.企业内部,2.外部人员) * 获取 员工来源(1.企业内部,2.外部人员)
* @return sourceList * @return sourceList
*/ */
public List<Integer> getSourceList(){ public List<Integer> getSourceList(){
return this.sourceList; return this.sourceList;
} }
/** /**
* 设置 员工来源(1.企业内部,2.外部人员) * 设置 员工来源(1.企业内部,2.外部人员)
* @param sourceList * @param sourceList
*/ */
public void setSourceList(List<Integer> sourceList){ public void setSourceList(List<Integer> sourceList){
this.sourceList = sourceList; this.sourceList = sourceList;
} }
/** /**
* 获取 员工来源(1.企业内部,2.外部人员) * 获取 员工来源(1.企业内部,2.外部人员)
* @return sourceNotList * @return sourceNotList
*/ */
public List<Integer> getSourceNotList(){ public List<Integer> getSourceNotList(){
return this.sourceNotList; return this.sourceNotList;
} }
/** /**
* 设置 员工来源(1.企业内部,2.外部人员) * 设置 员工来源(1.企业内部,2.外部人员)
* @param sourceNotList * @param sourceNotList
*/ */
public void setSourceNotList(List<Integer> sourceNotList){ public void setSourceNotList(List<Integer> sourceNotList){
this.sourceNotList = sourceNotList; this.sourceNotList = sourceNotList;
} }
/** /**
* 获取 入职登记表 * 获取 入职登记表
* @return registerPathList * @return registerPathList
*/ */
public List<String> getRegisterPathList(){ public List<String> getRegisterPathList(){
return this.registerPathList; return this.registerPathList;
} }
/** /**
* 设置 入职登记表 * 设置 入职登记表
* @param registerPathList * @param registerPathList
*/ */
public void setRegisterPathList(List<String> registerPathList){ public void setRegisterPathList(List<String> registerPathList){
this.registerPathList = registerPathList; this.registerPathList = registerPathList;
} }
/** /**
* 获取 入职登记表 * 获取 入职登记表
* @return registerPathNotList * @return registerPathNotList
*/ */
public List<String> getRegisterPathNotList(){ public List<String> getRegisterPathNotList(){
return this.registerPathNotList; return this.registerPathNotList;
} }
/** /**
* 设置 入职登记表 * 设置 入职登记表
* @param registerPathNotList * @param registerPathNotList
*/ */
public void setRegisterPathNotList(List<String> registerPathNotList){ public void setRegisterPathNotList(List<String> registerPathNotList){
this.registerPathNotList = registerPathNotList; this.registerPathNotList = registerPathNotList;
} }
/** /**
* 获取 开始 入职时间 * 获取 开始 入职时间
* @return entryDateStart * @return entryDateStart
*/ */
public String getEntryDateStart(){ public String getEntryDateStart(){
return this.entryDateStart; return this.entryDateStart;
} }
/** /**
* 设置 开始 入职时间 * 设置 开始 入职时间
* @param entryDateStart * @param entryDateStart
*/ */
public void setEntryDateStart(String entryDateStart){ public void setEntryDateStart(String entryDateStart){
this.entryDateStart = entryDateStart; this.entryDateStart = entryDateStart;
} }
/** /**
* 获取 结束 入职时间 * 获取 结束 入职时间
* @return entryDateEnd * @return entryDateEnd
*/ */
public String getEntryDateEnd(){ public String getEntryDateEnd(){
return this.entryDateEnd; return this.entryDateEnd;
} }
/** /**
* 设置 结束 入职时间 * 设置 结束 入职时间
* @param entryDateEnd * @param entryDateEnd
*/ */
public void setEntryDateEnd(String entryDateEnd){ public void setEntryDateEnd(String entryDateEnd){
this.entryDateEnd = entryDateEnd; this.entryDateEnd = entryDateEnd;
} }
/** /**
* 获取 开始 转正时间 * 获取 开始 转正时间
* @return regularDateStart * @return regularDateStart
*/ */
public String getRegularDateStart(){ public String getRegularDateStart(){
return this.regularDateStart; return this.regularDateStart;
} }
/** /**
* 设置 开始 转正时间 * 设置 开始 转正时间
* @param regularDateStart * @param regularDateStart
*/ */
public void setRegularDateStart(String regularDateStart){ public void setRegularDateStart(String regularDateStart){
this.regularDateStart = regularDateStart; this.regularDateStart = regularDateStart;
} }
/** /**
* 获取 结束 转正时间 * 获取 结束 转正时间
* @return regularDateEnd * @return regularDateEnd
*/ */
public String getRegularDateEnd(){ public String getRegularDateEnd(){
return this.regularDateEnd; return this.regularDateEnd;
} }
/** /**
* 设置 结束 转正时间 * 设置 结束 转正时间
* @param regularDateEnd * @param regularDateEnd
*/ */
public void setRegularDateEnd(String regularDateEnd){ public void setRegularDateEnd(String regularDateEnd){
this.regularDateEnd = regularDateEnd; this.regularDateEnd = regularDateEnd;
} }
/** /**
* 获取 开始 离职时间 * 获取 开始 离职时间
* @return leaveDateStart * @return leaveDateStart
*/ */
public String getLeaveDateStart(){ public String getLeaveDateStart(){
return this.leaveDateStart; return this.leaveDateStart;
} }
/** /**
* 设置 开始 离职时间 * 设置 开始 离职时间
* @param leaveDateStart * @param leaveDateStart
*/ */
public void setLeaveDateStart(String leaveDateStart){ public void setLeaveDateStart(String leaveDateStart){
this.leaveDateStart = leaveDateStart; this.leaveDateStart = leaveDateStart;
} }
/** /**
* 获取 结束 离职时间 * 获取 结束 离职时间
* @return leaveDateEnd * @return leaveDateEnd
*/ */
public String getLeaveDateEnd(){ public String getLeaveDateEnd(){
return this.leaveDateEnd; return this.leaveDateEnd;
} }
/** /**
* 设置 结束 离职时间 * 设置 结束 离职时间
* @param leaveDateEnd * @param leaveDateEnd
*/ */
public void setLeaveDateEnd(String leaveDateEnd){ public void setLeaveDateEnd(String leaveDateEnd){
this.leaveDateEnd = leaveDateEnd; this.leaveDateEnd = leaveDateEnd;
} }
/** /**
* 获取 备注 * 获取 备注
* @return remarkList * @return remarkList
*/ */
public List<String> getRemarkList(){ public List<String> getRemarkList(){
return this.remarkList; return this.remarkList;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkList * @param remarkList
*/ */
public void setRemarkList(List<String> remarkList){ public void setRemarkList(List<String> remarkList){
this.remarkList = remarkList; this.remarkList = remarkList;
} }
/** /**
* 获取 备注 * 获取 备注
* @return remarkNotList * @return remarkNotList
*/ */
public List<String> getRemarkNotList(){ public List<String> getRemarkNotList(){
return this.remarkNotList; return this.remarkNotList;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkNotList * @param remarkNotList
*/ */
public void setRemarkNotList(List<String> remarkNotList){ public void setRemarkNotList(List<String> remarkNotList){
this.remarkNotList = remarkNotList; this.remarkNotList = remarkNotList;
} }
/** /**
* 获取 开始 累计查看次数 * 获取 开始 累计查看次数
* @return sumViewsStart * @return sumViewsStart
*/ */
public Integer getSumViewsStart(){ public Integer getSumViewsStart(){
return this.sumViewsStart; return this.sumViewsStart;
} }
/** /**
* 设置 开始 累计查看次数 * 设置 开始 累计查看次数
* @param sumViewsStart * @param sumViewsStart
*/ */
public void setSumViewsStart(Integer sumViewsStart){ public void setSumViewsStart(Integer sumViewsStart){
this.sumViewsStart = sumViewsStart; this.sumViewsStart = sumViewsStart;
} }
/** /**
* 获取 结束 累计查看次数 * 获取 结束 累计查看次数
* @return $sumViewsEnd * @return $sumViewsEnd
*/ */
public Integer getSumViewsEnd(){ public Integer getSumViewsEnd(){
return this.sumViewsEnd; return this.sumViewsEnd;
} }
/** /**
* 设置 结束 累计查看次数 * 设置 结束 累计查看次数
* @param sumViewsEnd * @param sumViewsEnd
*/ */
public void setSumViewsEnd(Integer sumViewsEnd){ public void setSumViewsEnd(Integer sumViewsEnd){
this.sumViewsEnd = sumViewsEnd; this.sumViewsEnd = sumViewsEnd;
} }
/** /**
* 获取 增加 累计查看次数 * 获取 增加 累计查看次数
* @return sumViewsIncrement * @return sumViewsIncrement
*/ */
public Integer getSumViewsIncrement(){ public Integer getSumViewsIncrement(){
return this.sumViewsIncrement; return this.sumViewsIncrement;
} }
/** /**
* 设置 增加 累计查看次数 * 设置 增加 累计查看次数
* @param sumViewsIncrement * @param sumViewsIncrement
*/ */
public void setSumViewsIncrement(Integer sumViewsIncrement){ public void setSumViewsIncrement(Integer sumViewsIncrement){
this.sumViewsIncrement = sumViewsIncrement; this.sumViewsIncrement = sumViewsIncrement;
} }
/** /**
* 获取 累计查看次数 * 获取 累计查看次数
* @return sumViewsList * @return sumViewsList
*/ */
public List<Integer> getSumViewsList(){ public List<Integer> getSumViewsList(){
return this.sumViewsList; return this.sumViewsList;
} }
/** /**
* 设置 累计查看次数 * 设置 累计查看次数
* @param sumViewsList * @param sumViewsList
*/ */
public void setSumViewsList(List<Integer> sumViewsList){ public void setSumViewsList(List<Integer> sumViewsList){
this.sumViewsList = sumViewsList; this.sumViewsList = sumViewsList;
} }
/** /**
* 获取 累计查看次数 * 获取 累计查看次数
* @return sumViewsNotList * @return sumViewsNotList
*/ */
public List<Integer> getSumViewsNotList(){ public List<Integer> getSumViewsNotList(){
return this.sumViewsNotList; return this.sumViewsNotList;
} }
/** /**
* 设置 累计查看次数 * 设置 累计查看次数
* @param sumViewsNotList * @param sumViewsNotList
*/ */
public void setSumViewsNotList(List<Integer> sumViewsNotList){ public void setSumViewsNotList(List<Integer> sumViewsNotList){
this.sumViewsNotList = sumViewsNotList; this.sumViewsNotList = sumViewsNotList;
} }
/** /**
* 获取 开始 当日查看次数 * 获取 开始 当日查看次数
* @return viewsByDayStart * @return viewsByDayStart
*/ */
public Integer getViewsByDayStart(){ public Integer getViewsByDayStart(){
return this.viewsByDayStart; return this.viewsByDayStart;
} }
/** /**
* 设置 开始 当日查看次数 * 设置 开始 当日查看次数
* @param viewsByDayStart * @param viewsByDayStart
*/ */
public void setViewsByDayStart(Integer viewsByDayStart){ public void setViewsByDayStart(Integer viewsByDayStart){
this.viewsByDayStart = viewsByDayStart; this.viewsByDayStart = viewsByDayStart;
} }
/** /**
* 获取 结束 当日查看次数 * 获取 结束 当日查看次数
* @return $viewsByDayEnd * @return $viewsByDayEnd
*/ */
public Integer getViewsByDayEnd(){ public Integer getViewsByDayEnd(){
return this.viewsByDayEnd; return this.viewsByDayEnd;
} }
/** /**
* 设置 结束 当日查看次数 * 设置 结束 当日查看次数
* @param viewsByDayEnd * @param viewsByDayEnd
*/ */
public void setViewsByDayEnd(Integer viewsByDayEnd){ public void setViewsByDayEnd(Integer viewsByDayEnd){
this.viewsByDayEnd = viewsByDayEnd; this.viewsByDayEnd = viewsByDayEnd;
} }
/** /**
* 获取 增加 当日查看次数 * 获取 增加 当日查看次数
* @return viewsByDayIncrement * @return viewsByDayIncrement
*/ */
public Integer getViewsByDayIncrement(){ public Integer getViewsByDayIncrement(){
return this.viewsByDayIncrement; return this.viewsByDayIncrement;
} }
/** /**
* 设置 增加 当日查看次数 * 设置 增加 当日查看次数
* @param viewsByDayIncrement * @param viewsByDayIncrement
*/ */
public void setViewsByDayIncrement(Integer viewsByDayIncrement){ public void setViewsByDayIncrement(Integer viewsByDayIncrement){
this.viewsByDayIncrement = viewsByDayIncrement; this.viewsByDayIncrement = viewsByDayIncrement;
} }
/** /**
* 获取 当日查看次数 * 获取 当日查看次数
* @return viewsByDayList * @return viewsByDayList
*/ */
public List<Integer> getViewsByDayList(){ public List<Integer> getViewsByDayList(){
return this.viewsByDayList; return this.viewsByDayList;
} }
/** /**
* 设置 当日查看次数 * 设置 当日查看次数
* @param viewsByDayList * @param viewsByDayList
*/ */
public void setViewsByDayList(List<Integer> viewsByDayList){ public void setViewsByDayList(List<Integer> viewsByDayList){
this.viewsByDayList = viewsByDayList; this.viewsByDayList = viewsByDayList;
} }
/** /**
* 获取 当日查看次数 * 获取 当日查看次数
* @return viewsByDayNotList * @return viewsByDayNotList
*/ */
public List<Integer> getViewsByDayNotList(){ public List<Integer> getViewsByDayNotList(){
return this.viewsByDayNotList; return this.viewsByDayNotList;
} }
/** /**
* 设置 当日查看次数 * 设置 当日查看次数
* @param viewsByDayNotList * @param viewsByDayNotList
*/ */
public void setViewsByDayNotList(List<Integer> viewsByDayNotList){ public void setViewsByDayNotList(List<Integer> viewsByDayNotList){
this.viewsByDayNotList = viewsByDayNotList; this.viewsByDayNotList = viewsByDayNotList;
} }
/** /**
* 获取 开始 发送名片次数 * 获取 开始 发送名片次数
* @return sendBusinessCardTimesStart * @return sendBusinessCardTimesStart
*/ */
public Integer getSendBusinessCardTimesStart(){ public Integer getSendBusinessCardTimesStart(){
return this.sendBusinessCardTimesStart; return this.sendBusinessCardTimesStart;
} }
/** /**
* 设置 开始 发送名片次数 * 设置 开始 发送名片次数
* @param sendBusinessCardTimesStart * @param sendBusinessCardTimesStart
*/ */
public void setSendBusinessCardTimesStart(Integer sendBusinessCardTimesStart){ public void setSendBusinessCardTimesStart(Integer sendBusinessCardTimesStart){
this.sendBusinessCardTimesStart = sendBusinessCardTimesStart; this.sendBusinessCardTimesStart = sendBusinessCardTimesStart;
} }
/** /**
* 获取 结束 发送名片次数 * 获取 结束 发送名片次数
* @return $sendBusinessCardTimesEnd * @return $sendBusinessCardTimesEnd
*/ */
public Integer getSendBusinessCardTimesEnd(){ public Integer getSendBusinessCardTimesEnd(){
return this.sendBusinessCardTimesEnd; return this.sendBusinessCardTimesEnd;
} }
/** /**
* 设置 结束 发送名片次数 * 设置 结束 发送名片次数
* @param sendBusinessCardTimesEnd * @param sendBusinessCardTimesEnd
*/ */
public void setSendBusinessCardTimesEnd(Integer sendBusinessCardTimesEnd){ public void setSendBusinessCardTimesEnd(Integer sendBusinessCardTimesEnd){
this.sendBusinessCardTimesEnd = sendBusinessCardTimesEnd; this.sendBusinessCardTimesEnd = sendBusinessCardTimesEnd;
} }
/** /**
* 获取 增加 发送名片次数 * 获取 增加 发送名片次数
* @return sendBusinessCardTimesIncrement * @return sendBusinessCardTimesIncrement
*/ */
public Integer getSendBusinessCardTimesIncrement(){ public Integer getSendBusinessCardTimesIncrement(){
return this.sendBusinessCardTimesIncrement; return this.sendBusinessCardTimesIncrement;
} }
/** /**
* 设置 增加 发送名片次数 * 设置 增加 发送名片次数
* @param sendBusinessCardTimesIncrement * @param sendBusinessCardTimesIncrement
*/ */
public void setSendBusinessCardTimesIncrement(Integer sendBusinessCardTimesIncrement){ public void setSendBusinessCardTimesIncrement(Integer sendBusinessCardTimesIncrement){
this.sendBusinessCardTimesIncrement = sendBusinessCardTimesIncrement; this.sendBusinessCardTimesIncrement = sendBusinessCardTimesIncrement;
} }
/** /**
* 获取 发送名片次数 * 获取 发送名片次数
* @return sendBusinessCardTimesList * @return sendBusinessCardTimesList
*/ */
public List<Integer> getSendBusinessCardTimesList(){ public List<Integer> getSendBusinessCardTimesList(){
return this.sendBusinessCardTimesList; return this.sendBusinessCardTimesList;
} }
/** /**
* 设置 发送名片次数 * 设置 发送名片次数
* @param sendBusinessCardTimesList * @param sendBusinessCardTimesList
*/ */
public void setSendBusinessCardTimesList(List<Integer> sendBusinessCardTimesList){ public void setSendBusinessCardTimesList(List<Integer> sendBusinessCardTimesList){
this.sendBusinessCardTimesList = sendBusinessCardTimesList; this.sendBusinessCardTimesList = sendBusinessCardTimesList;
} }
/** /**
* 获取 发送名片次数 * 获取 发送名片次数
* @return sendBusinessCardTimesNotList * @return sendBusinessCardTimesNotList
*/ */
public List<Integer> getSendBusinessCardTimesNotList(){ public List<Integer> getSendBusinessCardTimesNotList(){
return this.sendBusinessCardTimesNotList; return this.sendBusinessCardTimesNotList;
} }
/** /**
* 设置 发送名片次数 * 设置 发送名片次数
* @param sendBusinessCardTimesNotList * @param sendBusinessCardTimesNotList
*/ */
public void setSendBusinessCardTimesNotList(List<Integer> sendBusinessCardTimesNotList){ public void setSendBusinessCardTimesNotList(List<Integer> sendBusinessCardTimesNotList){
this.sendBusinessCardTimesNotList = sendBusinessCardTimesNotList; this.sendBusinessCardTimesNotList = sendBusinessCardTimesNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
*/ */
public Long getCreateUserIdStart(){ public Long getCreateUserIdStart(){
return this.createUserIdStart; return this.createUserIdStart;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public void setCreateUserIdStart(Long createUserIdStart){ public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
} }
/** /**
* 获取 结束 创建用户 * 获取 结束 创建用户
* @return $createUserIdEnd * @return $createUserIdEnd
*/ */
public Long getCreateUserIdEnd(){ public Long getCreateUserIdEnd(){
return this.createUserIdEnd; return this.createUserIdEnd;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public void setCreateUserIdEnd(Long createUserIdEnd){ public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
} }
/** /**
* 获取 增加 创建用户 * 获取 增加 创建用户
* @return createUserIdIncrement * @return createUserIdIncrement
*/ */
public Long getCreateUserIdIncrement(){ public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement; return this.createUserIdIncrement;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public void setCreateUserIdIncrement(Long createUserIdIncrement){ public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdList * @return createUserIdList
*/ */
public List<Long> getCreateUserIdList(){ public List<Long> getCreateUserIdList(){
return this.createUserIdList; return this.createUserIdList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public void setCreateUserIdList(List<Long> createUserIdList){ public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdNotList * @return createUserIdNotList
*/ */
public List<Long> getCreateUserIdNotList(){ public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList; return this.createUserIdNotList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public void setCreateUserIdNotList(List<Long> createUserIdNotList){ public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
} }
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
*/ */
public String getCreateTimeStart(){ public String getCreateTimeStart(){
return this.createTimeStart; return this.createTimeStart;
} }
/** /**
* 设置 开始 创建时间 * 设置 开始 创建时间
* @param createTimeStart * @param createTimeStart
*/ */
public void setCreateTimeStart(String createTimeStart){ public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart; this.createTimeStart = createTimeStart;
} }
/** /**
* 获取 结束 创建时间 * 获取 结束 创建时间
* @return createTimeEnd * @return createTimeEnd
*/ */
public String getCreateTimeEnd(){ public String getCreateTimeEnd(){
return this.createTimeEnd; return this.createTimeEnd;
} }
/** /**
* 设置 结束 创建时间 * 设置 结束 创建时间
* @param createTimeEnd * @param createTimeEnd
*/ */
public void setCreateTimeEnd(String createTimeEnd){ public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd; this.createTimeEnd = createTimeEnd;
} }
/** /**
* 获取 开始 更新用户 * 获取 开始 更新用户
* @return updateUserIdStart * @return updateUserIdStart
*/ */
public Long getUpdateUserIdStart(){ public Long getUpdateUserIdStart(){
return this.updateUserIdStart; return this.updateUserIdStart;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public void setUpdateUserIdStart(Long updateUserIdStart){ public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
} }
/** /**
* 获取 结束 更新用户 * 获取 结束 更新用户
* @return $updateUserIdEnd * @return $updateUserIdEnd
*/ */
public Long getUpdateUserIdEnd(){ public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd; return this.updateUserIdEnd;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public void setUpdateUserIdEnd(Long updateUserIdEnd){ public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
} }
/** /**
* 获取 增加 更新用户 * 获取 增加 更新用户
* @return updateUserIdIncrement * @return updateUserIdIncrement
*/ */
public Long getUpdateUserIdIncrement(){ public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement; return this.updateUserIdIncrement;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){ public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdList * @return updateUserIdList
*/ */
public List<Long> getUpdateUserIdList(){ public List<Long> getUpdateUserIdList(){
return this.updateUserIdList; return this.updateUserIdList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public void setUpdateUserIdList(List<Long> updateUserIdList){ public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdNotList * @return updateUserIdNotList
*/ */
public List<Long> getUpdateUserIdNotList(){ public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList; return this.updateUserIdNotList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){ public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
} }
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
*/ */
public String getUpdateTimeStart(){ public String getUpdateTimeStart(){
return this.updateTimeStart; return this.updateTimeStart;
} }
/** /**
* 设置 开始 更新时间 * 设置 开始 更新时间
* @param updateTimeStart * @param updateTimeStart
*/ */
public void setUpdateTimeStart(String updateTimeStart){ public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart; this.updateTimeStart = updateTimeStart;
} }
/** /**
* 获取 结束 更新时间 * 获取 结束 更新时间
* @return updateTimeEnd * @return updateTimeEnd
*/ */
public String getUpdateTimeEnd(){ public String getUpdateTimeEnd(){
return this.updateTimeEnd; return this.updateTimeEnd;
} }
/** /**
* 设置 结束 更新时间 * 设置 结束 更新时间
* @param updateTimeEnd * @param updateTimeEnd
*/ */
public void setUpdateTimeEnd(String updateTimeEnd){ public void setUpdateTimeEnd(String updateTimeEnd){
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/** /**
* 设置 序号,主键,自增长 * 获取 邮件地址
* @param id * @return emailList
*/ */
public List<String> getEmailList(){
return this.emailList;
}
/**
* 设置 邮件地址
* @param emailList
*/
public void setEmailList(List<String> emailList){
this.emailList = emailList;
}
/**
* 获取 邮件地址
* @return emailNotList
*/
public List<String> getEmailNotList(){
return this.emailNotList;
}
/**
* 设置 邮件地址
* @param emailNotList
*/
public void setEmailNotList(List<String> emailNotList){
this.emailNotList = emailNotList;
}
/**
* 设置 序号,主键,自增长
* @param id
*/
public StaffQuery id(Long id){ public StaffQuery id(Long id){
setId(id); setId(id);
return this; return this;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public StaffQuery idStart(Long idStart){ public StaffQuery idStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
return this; return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public StaffQuery idEnd(Long idEnd){ public StaffQuery idEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public StaffQuery idIncrement(Long idIncrement){ public StaffQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public StaffQuery idList(List<Long> idList){ public StaffQuery idList(List<Long> idList){
this.idList = idList; this.idList = idList;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idNotList * @param idNotList
*/ */
public StaffQuery idNotList(List<Long> idNotList){ public StaffQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 员工姓名 * 设置 员工姓名
* @param name * @param name
*/ */
public StaffQuery name(String name){ public StaffQuery name(String name){
setName(name); setName(name);
return this; return this;
} }
/** /**
* 设置 员工姓名 * 设置 员工姓名
* @param nameList * @param nameList
*/ */
public StaffQuery nameList(List<String> nameList){ public StaffQuery nameList(List<String> nameList){
this.nameList = nameList; this.nameList = nameList;
return this; return this;
} }
/** /**
* 设置 性别(1.男,2.女) * 设置 性别(1.男,2.女)
* @param gender * @param gender
*/ */
public StaffQuery gender(Integer gender){ public StaffQuery gender(Integer gender){
setGender(gender); setGender(gender);
return this; return this;
} }
/** /**
* 设置 开始 性别(1.男,2.女) * 设置 开始 性别(1.男,2.女)
* @param genderStart * @param genderStart
*/ */
public StaffQuery genderStart(Integer genderStart){ public StaffQuery genderStart(Integer genderStart){
this.genderStart = genderStart; this.genderStart = genderStart;
return this; return this;
} }
/** /**
* 设置 结束 性别(1.男,2.女) * 设置 结束 性别(1.男,2.女)
* @param genderEnd * @param genderEnd
*/ */
public StaffQuery genderEnd(Integer genderEnd){ public StaffQuery genderEnd(Integer genderEnd){
this.genderEnd = genderEnd; this.genderEnd = genderEnd;
return this; return this;
} }
/** /**
* 设置 增加 性别(1.男,2.女) * 设置 增加 性别(1.男,2.女)
* @param genderIncrement * @param genderIncrement
*/ */
public StaffQuery genderIncrement(Integer genderIncrement){ public StaffQuery genderIncrement(Integer genderIncrement){
this.genderIncrement = genderIncrement; this.genderIncrement = genderIncrement;
return this; return this;
} }
/** /**
* 设置 性别(1.男,2.女) * 设置 性别(1.男,2.女)
* @param genderList * @param genderList
*/ */
public StaffQuery genderList(List<Integer> genderList){ public StaffQuery genderList(List<Integer> genderList){
this.genderList = genderList; this.genderList = genderList;
return this; return this;
} }
/** /**
* 设置 性别(1.男,2.女) * 设置 性别(1.男,2.女)
* @param genderNotList * @param genderNotList
*/ */
public StaffQuery genderNotList(List<Integer> genderNotList){ public StaffQuery genderNotList(List<Integer> genderNotList){
this.genderNotList = genderNotList; this.genderNotList = genderNotList;
return this; return this;
} }
/** /**
* 设置 照片 * 设置 照片
* @param photoPath * @param photoPath
*/ */
public StaffQuery photoPath(String photoPath){ public StaffQuery photoPath(String photoPath){
setPhotoPath(photoPath); setPhotoPath(photoPath);
return this; return this;
} }
/** /**
* 设置 照片 * 设置 照片
* @param photoPathList * @param photoPathList
*/ */
public StaffQuery photoPathList(List<String> photoPathList){ public StaffQuery photoPathList(List<String> photoPathList){
this.photoPathList = photoPathList; this.photoPathList = photoPathList;
return this; return this;
} }
/**
* 设置 邮件地址
* @param Email
*/
public StaffQuery Email(String Email){
setEmail(Email);
return this;
}
/** /**
* 设置 邮件地址 * 设置 联系电话
* @param EmailList * @param phoneNumber
*/ */
public StaffQuery EmailList(List<String> EmailList){
this.EmailList = EmailList;
return this;
}
/**
* 设置 联系电话
* @param phoneNumber
*/
public StaffQuery phoneNumber(String phoneNumber){ public StaffQuery phoneNumber(String phoneNumber){
setPhoneNumber(phoneNumber); setPhoneNumber(phoneNumber);
return this; return this;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param phoneNumberList * @param phoneNumberList
*/ */
public StaffQuery phoneNumberList(List<String> phoneNumberList){ public StaffQuery phoneNumberList(List<String> phoneNumberList){
this.phoneNumberList = phoneNumberList; this.phoneNumberList = phoneNumberList;
return this; return this;
} }
/** /**
* 设置 身份证号码 * 设置 身份证号码
* @param idCard * @param idCard
*/ */
public StaffQuery idCard(String idCard){ public StaffQuery idCard(String idCard){
setIdCard(idCard); setIdCard(idCard);
return this; return this;
} }
/** /**
* 设置 身份证号码 * 设置 身份证号码
* @param idCardList * @param idCardList
*/ */
public StaffQuery idCardList(List<String> idCardList){ public StaffQuery idCardList(List<String> idCardList){
this.idCardList = idCardList; this.idCardList = idCardList;
return this; return this;
} }
/** /**
* 设置 工号 * 设置 工号
* @param workNum * @param workNum
*/ */
public StaffQuery workNum(String workNum){ public StaffQuery workNum(String workNum){
setWorkNum(workNum); setWorkNum(workNum);
return this; return this;
} }
/** /**
* 设置 工号 * 设置 工号
* @param workNumList * @param workNumList
*/ */
public StaffQuery workNumList(List<String> workNumList){ public StaffQuery workNumList(List<String> workNumList){
this.workNumList = workNumList; this.workNumList = workNumList;
return this; return this;
} }
/** /**
* 设置 所属公司 * 设置 所属公司
* @param companyIds * @param companyIds
*/ */
public StaffQuery companyIds(String companyIds){ public StaffQuery companyIds(String companyIds){
setCompanyIds(companyIds); setCompanyIds(companyIds);
return this; return this;
} }
/** /**
* 设置 所属公司 * 设置 所属公司
* @param companyIdsList * @param companyIdsList
*/ */
public StaffQuery companyIdsList(List<String> companyIdsList){ public StaffQuery companyIdsList(List<String> companyIdsList){
this.companyIdsList = companyIdsList; this.companyIdsList = companyIdsList;
return this; return this;
} }
/** /**
* 设置 所属公司名称 * 设置 所属公司名称
* @param companyName * @param companyName
*/ */
public StaffQuery companyName(String companyName){ public StaffQuery companyName(String companyName){
setCompanyName(companyName); setCompanyName(companyName);
return this; return this;
} }
/** /**
* 设置 所属公司名称 * 设置 所属公司名称
* @param companyNameList * @param companyNameList
*/ */
public StaffQuery companyNameList(List<String> companyNameList){ public StaffQuery companyNameList(List<String> companyNameList){
this.companyNameList = companyNameList; this.companyNameList = companyNameList;
return this; return this;
} }
/** /**
* 设置 职位ID * 设置 职位ID
* @param positionId * @param positionId
*/ */
public StaffQuery positionId(Long positionId){ public StaffQuery positionId(Long positionId){
setPositionId(positionId); setPositionId(positionId);
return this; return this;
} }
/** /**
* 设置 开始 职位ID * 设置 开始 职位ID
* @param positionIdStart * @param positionIdStart
*/ */
public StaffQuery positionIdStart(Long positionIdStart){ public StaffQuery positionIdStart(Long positionIdStart){
this.positionIdStart = positionIdStart; this.positionIdStart = positionIdStart;
return this; return this;
} }
/** /**
* 设置 结束 职位ID * 设置 结束 职位ID
* @param positionIdEnd * @param positionIdEnd
*/ */
public StaffQuery positionIdEnd(Long positionIdEnd){ public StaffQuery positionIdEnd(Long positionIdEnd){
this.positionIdEnd = positionIdEnd; this.positionIdEnd = positionIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 职位ID * 设置 增加 职位ID
* @param positionIdIncrement * @param positionIdIncrement
*/ */
public StaffQuery positionIdIncrement(Long positionIdIncrement){ public StaffQuery positionIdIncrement(Long positionIdIncrement){
this.positionIdIncrement = positionIdIncrement; this.positionIdIncrement = positionIdIncrement;
return this; return this;
} }
/** /**
* 设置 职位ID * 设置 职位ID
* @param positionIdList * @param positionIdList
*/ */
public StaffQuery positionIdList(List<Long> positionIdList){ public StaffQuery positionIdList(List<Long> positionIdList){
this.positionIdList = positionIdList; this.positionIdList = positionIdList;
return this; return this;
} }
/** /**
* 设置 职位ID * 设置 职位ID
* @param positionIdNotList * @param positionIdNotList
*/ */
public StaffQuery positionIdNotList(List<Long> positionIdNotList){ public StaffQuery positionIdNotList(List<Long> positionIdNotList){
this.positionIdNotList = positionIdNotList; this.positionIdNotList = positionIdNotList;
return this; return this;
} }
/** /**
* 设置 职位名称 * 设置 职位名称
* @param positionName * @param positionName
*/ */
public StaffQuery positionName(String positionName){ public StaffQuery positionName(String positionName){
setPositionName(positionName); setPositionName(positionName);
return this; return this;
} }
/** /**
* 设置 职位名称 * 设置 职位名称
* @param positionNameList * @param positionNameList
*/ */
public StaffQuery positionNameList(List<String> positionNameList){ public StaffQuery positionNameList(List<String> positionNameList){
this.positionNameList = positionNameList; this.positionNameList = positionNameList;
return this; return this;
} }
/** /**
* 设置 员工类型(1.全职,2.兼职,3.实习) * 设置 员工类型(1.全职,2.兼职,3.实习)
* @param staffType * @param staffType
*/ */
public StaffQuery staffType(Integer staffType){ public StaffQuery staffType(Integer staffType){
setStaffType(staffType); setStaffType(staffType);
return this; return this;
} }
/** /**
* 设置 开始 员工类型(1.全职,2.兼职,3.实习) * 设置 开始 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeStart * @param staffTypeStart
*/ */
public StaffQuery staffTypeStart(Integer staffTypeStart){ public StaffQuery staffTypeStart(Integer staffTypeStart){
this.staffTypeStart = staffTypeStart; this.staffTypeStart = staffTypeStart;
return this; return this;
} }
/** /**
* 设置 结束 员工类型(1.全职,2.兼职,3.实习) * 设置 结束 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeEnd * @param staffTypeEnd
*/ */
public StaffQuery staffTypeEnd(Integer staffTypeEnd){ public StaffQuery staffTypeEnd(Integer staffTypeEnd){
this.staffTypeEnd = staffTypeEnd; this.staffTypeEnd = staffTypeEnd;
return this; return this;
} }
/** /**
* 设置 增加 员工类型(1.全职,2.兼职,3.实习) * 设置 增加 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeIncrement * @param staffTypeIncrement
*/ */
public StaffQuery staffTypeIncrement(Integer staffTypeIncrement){ public StaffQuery staffTypeIncrement(Integer staffTypeIncrement){
this.staffTypeIncrement = staffTypeIncrement; this.staffTypeIncrement = staffTypeIncrement;
return this; return this;
} }
/** /**
* 设置 员工类型(1.全职,2.兼职,3.实习) * 设置 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeList * @param staffTypeList
*/ */
public StaffQuery staffTypeList(List<Integer> staffTypeList){ public StaffQuery staffTypeList(List<Integer> staffTypeList){
this.staffTypeList = staffTypeList; this.staffTypeList = staffTypeList;
return this; return this;
} }
/** /**
* 设置 员工类型(1.全职,2.兼职,3.实习) * 设置 员工类型(1.全职,2.兼职,3.实习)
* @param staffTypeNotList * @param staffTypeNotList
*/ */
public StaffQuery staffTypeNotList(List<Integer> staffTypeNotList){ public StaffQuery staffTypeNotList(List<Integer> staffTypeNotList){
this.staffTypeNotList = staffTypeNotList; this.staffTypeNotList = staffTypeNotList;
return this; return this;
} }
/** /**
* 设置 员工状态(1.正式,2.试用,3.离职) * 设置 员工状态(1.正式,2.试用,3.离职)
* @param staffStatus * @param staffStatus
*/ */
public StaffQuery staffStatus(Integer staffStatus){ public StaffQuery staffStatus(Integer staffStatus){
setStaffStatus(staffStatus); setStaffStatus(staffStatus);
return this; return this;
} }
/** /**
* 设置 开始 员工状态(1.正式,2.试用,3.离职) * 设置 开始 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusStart * @param staffStatusStart
*/ */
public StaffQuery staffStatusStart(Integer staffStatusStart){ public StaffQuery staffStatusStart(Integer staffStatusStart){
this.staffStatusStart = staffStatusStart; this.staffStatusStart = staffStatusStart;
return this; return this;
} }
/** /**
* 设置 结束 员工状态(1.正式,2.试用,3.离职) * 设置 结束 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusEnd * @param staffStatusEnd
*/ */
public StaffQuery staffStatusEnd(Integer staffStatusEnd){ public StaffQuery staffStatusEnd(Integer staffStatusEnd){
this.staffStatusEnd = staffStatusEnd; this.staffStatusEnd = staffStatusEnd;
return this; return this;
} }
/** /**
* 设置 增加 员工状态(1.正式,2.试用,3.离职) * 设置 增加 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusIncrement * @param staffStatusIncrement
*/ */
public StaffQuery staffStatusIncrement(Integer staffStatusIncrement){ public StaffQuery staffStatusIncrement(Integer staffStatusIncrement){
this.staffStatusIncrement = staffStatusIncrement; this.staffStatusIncrement = staffStatusIncrement;
return this; return this;
} }
/** /**
* 设置 员工状态(1.正式,2.试用,3.离职) * 设置 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusList * @param staffStatusList
*/ */
public StaffQuery staffStatusList(List<Integer> staffStatusList){ public StaffQuery staffStatusList(List<Integer> staffStatusList){
this.staffStatusList = staffStatusList; this.staffStatusList = staffStatusList;
return this; return this;
} }
/** /**
* 设置 员工状态(1.正式,2.试用,3.离职) * 设置 员工状态(1.正式,2.试用,3.离职)
* @param staffStatusNotList * @param staffStatusNotList
*/ */
public StaffQuery staffStatusNotList(List<Integer> staffStatusNotList){ public StaffQuery staffStatusNotList(List<Integer> staffStatusNotList){
this.staffStatusNotList = staffStatusNotList; this.staffStatusNotList = staffStatusNotList;
return this; return this;
} }
/** /**
* 设置 员工来源(1.企业内部,2.外部人员) * 设置 员工来源(1.企业内部,2.外部人员)
* @param source * @param source
*/ */
public StaffQuery source(Integer source){ public StaffQuery source(Integer source){
setSource(source); setSource(source);
return this; return this;
} }
/** /**
* 设置 开始 员工来源(1.企业内部,2.外部人员) * 设置 开始 员工来源(1.企业内部,2.外部人员)
* @param sourceStart * @param sourceStart
*/ */
public StaffQuery sourceStart(Integer sourceStart){ public StaffQuery sourceStart(Integer sourceStart){
this.sourceStart = sourceStart; this.sourceStart = sourceStart;
return this; return this;
} }
/** /**
* 设置 结束 员工来源(1.企业内部,2.外部人员) * 设置 结束 员工来源(1.企业内部,2.外部人员)
* @param sourceEnd * @param sourceEnd
*/ */
public StaffQuery sourceEnd(Integer sourceEnd){ public StaffQuery sourceEnd(Integer sourceEnd){
this.sourceEnd = sourceEnd; this.sourceEnd = sourceEnd;
return this; return this;
} }
/** /**
* 设置 增加 员工来源(1.企业内部,2.外部人员) * 设置 增加 员工来源(1.企业内部,2.外部人员)
* @param sourceIncrement * @param sourceIncrement
*/ */
public StaffQuery sourceIncrement(Integer sourceIncrement){ public StaffQuery sourceIncrement(Integer sourceIncrement){
this.sourceIncrement = sourceIncrement; this.sourceIncrement = sourceIncrement;
return this; return this;
} }
/** /**
* 设置 员工来源(1.企业内部,2.外部人员) * 设置 员工来源(1.企业内部,2.外部人员)
* @param sourceList * @param sourceList
*/ */
public StaffQuery sourceList(List<Integer> sourceList){ public StaffQuery sourceList(List<Integer> sourceList){
this.sourceList = sourceList; this.sourceList = sourceList;
return this; return this;
} }
/** /**
* 设置 员工来源(1.企业内部,2.外部人员) * 设置 员工来源(1.企业内部,2.外部人员)
* @param sourceNotList * @param sourceNotList
*/ */
public StaffQuery sourceNotList(List<Integer> sourceNotList){ public StaffQuery sourceNotList(List<Integer> sourceNotList){
this.sourceNotList = sourceNotList; this.sourceNotList = sourceNotList;
return this; return this;
} }
/** /**
* 设置 入职登记表 * 设置 入职登记表
* @param registerPath * @param registerPath
*/ */
public StaffQuery registerPath(String registerPath){ public StaffQuery registerPath(String registerPath){
setRegisterPath(registerPath); setRegisterPath(registerPath);
return this; return this;
} }
/** /**
* 设置 入职登记表 * 设置 入职登记表
* @param registerPathList * @param registerPathList
*/ */
public StaffQuery registerPathList(List<String> registerPathList){ public StaffQuery registerPathList(List<String> registerPathList){
this.registerPathList = registerPathList; this.registerPathList = registerPathList;
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remark * @param remark
*/ */
public StaffQuery remark(String remark){ public StaffQuery remark(String remark){
setRemark(remark); setRemark(remark);
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkList * @param remarkList
*/ */
public StaffQuery remarkList(List<String> remarkList){ public StaffQuery remarkList(List<String> remarkList){
this.remarkList = remarkList; this.remarkList = remarkList;
return this; return this;
} }
/** /**
* 设置 累计查看次数 * 设置 累计查看次数
* @param sumViews * @param sumViews
*/ */
public StaffQuery sumViews(Integer sumViews){ public StaffQuery sumViews(Integer sumViews){
setSumViews(sumViews); setSumViews(sumViews);
return this; return this;
} }
/** /**
* 设置 开始 累计查看次数 * 设置 开始 累计查看次数
* @param sumViewsStart * @param sumViewsStart
*/ */
public StaffQuery sumViewsStart(Integer sumViewsStart){ public StaffQuery sumViewsStart(Integer sumViewsStart){
this.sumViewsStart = sumViewsStart; this.sumViewsStart = sumViewsStart;
return this; return this;
} }
/** /**
* 设置 结束 累计查看次数 * 设置 结束 累计查看次数
* @param sumViewsEnd * @param sumViewsEnd
*/ */
public StaffQuery sumViewsEnd(Integer sumViewsEnd){ public StaffQuery sumViewsEnd(Integer sumViewsEnd){
this.sumViewsEnd = sumViewsEnd; this.sumViewsEnd = sumViewsEnd;
return this; return this;
} }
/** /**
* 设置 增加 累计查看次数 * 设置 增加 累计查看次数
* @param sumViewsIncrement * @param sumViewsIncrement
*/ */
public StaffQuery sumViewsIncrement(Integer sumViewsIncrement){ public StaffQuery sumViewsIncrement(Integer sumViewsIncrement){
this.sumViewsIncrement = sumViewsIncrement; this.sumViewsIncrement = sumViewsIncrement;
return this; return this;
} }
/** /**
* 设置 累计查看次数 * 设置 累计查看次数
* @param sumViewsList * @param sumViewsList
*/ */
public StaffQuery sumViewsList(List<Integer> sumViewsList){ public StaffQuery sumViewsList(List<Integer> sumViewsList){
this.sumViewsList = sumViewsList; this.sumViewsList = sumViewsList;
return this; return this;
} }
/** /**
* 设置 累计查看次数 * 设置 累计查看次数
* @param sumViewsNotList * @param sumViewsNotList
*/ */
public StaffQuery sumViewsNotList(List<Integer> sumViewsNotList){ public StaffQuery sumViewsNotList(List<Integer> sumViewsNotList){
this.sumViewsNotList = sumViewsNotList; this.sumViewsNotList = sumViewsNotList;
return this; return this;
} }
/** /**
* 设置 当日查看次数 * 设置 当日查看次数
* @param viewsByDay * @param viewsByDay
*/ */
public StaffQuery viewsByDay(Integer viewsByDay){ public StaffQuery viewsByDay(Integer viewsByDay){
setViewsByDay(viewsByDay); setViewsByDay(viewsByDay);
return this; return this;
} }
/** /**
* 设置 开始 当日查看次数 * 设置 开始 当日查看次数
* @param viewsByDayStart * @param viewsByDayStart
*/ */
public StaffQuery viewsByDayStart(Integer viewsByDayStart){ public StaffQuery viewsByDayStart(Integer viewsByDayStart){
this.viewsByDayStart = viewsByDayStart; this.viewsByDayStart = viewsByDayStart;
return this; return this;
} }
/** /**
* 设置 结束 当日查看次数 * 设置 结束 当日查看次数
* @param viewsByDayEnd * @param viewsByDayEnd
*/ */
public StaffQuery viewsByDayEnd(Integer viewsByDayEnd){ public StaffQuery viewsByDayEnd(Integer viewsByDayEnd){
this.viewsByDayEnd = viewsByDayEnd; this.viewsByDayEnd = viewsByDayEnd;
return this; return this;
} }
/** /**
* 设置 增加 当日查看次数 * 设置 增加 当日查看次数
* @param viewsByDayIncrement * @param viewsByDayIncrement
*/ */
public StaffQuery viewsByDayIncrement(Integer viewsByDayIncrement){ public StaffQuery viewsByDayIncrement(Integer viewsByDayIncrement){
this.viewsByDayIncrement = viewsByDayIncrement; this.viewsByDayIncrement = viewsByDayIncrement;
return this; return this;
} }
/** /**
* 设置 当日查看次数 * 设置 当日查看次数
* @param viewsByDayList * @param viewsByDayList
*/ */
public StaffQuery viewsByDayList(List<Integer> viewsByDayList){ public StaffQuery viewsByDayList(List<Integer> viewsByDayList){
this.viewsByDayList = viewsByDayList; this.viewsByDayList = viewsByDayList;
return this; return this;
} }
/** /**
* 设置 当日查看次数 * 设置 当日查看次数
* @param viewsByDayNotList * @param viewsByDayNotList
*/ */
public StaffQuery viewsByDayNotList(List<Integer> viewsByDayNotList){ public StaffQuery viewsByDayNotList(List<Integer> viewsByDayNotList){
this.viewsByDayNotList = viewsByDayNotList; this.viewsByDayNotList = viewsByDayNotList;
return this; return this;
} }
/** /**
* 设置 发送名片次数 * 设置 发送名片次数
* @param sendBusinessCardTimes * @param sendBusinessCardTimes
*/ */
public StaffQuery sendBusinessCardTimes(Integer sendBusinessCardTimes){ public StaffQuery sendBusinessCardTimes(Integer sendBusinessCardTimes){
setSendBusinessCardTimes(sendBusinessCardTimes); setSendBusinessCardTimes(sendBusinessCardTimes);
return this; return this;
} }
/** /**
* 设置 开始 发送名片次数 * 设置 开始 发送名片次数
* @param sendBusinessCardTimesStart * @param sendBusinessCardTimesStart
*/ */
public StaffQuery sendBusinessCardTimesStart(Integer sendBusinessCardTimesStart){ public StaffQuery sendBusinessCardTimesStart(Integer sendBusinessCardTimesStart){
this.sendBusinessCardTimesStart = sendBusinessCardTimesStart; this.sendBusinessCardTimesStart = sendBusinessCardTimesStart;
return this; return this;
} }
/** /**
* 设置 结束 发送名片次数 * 设置 结束 发送名片次数
* @param sendBusinessCardTimesEnd * @param sendBusinessCardTimesEnd
*/ */
public StaffQuery sendBusinessCardTimesEnd(Integer sendBusinessCardTimesEnd){ public StaffQuery sendBusinessCardTimesEnd(Integer sendBusinessCardTimesEnd){
this.sendBusinessCardTimesEnd = sendBusinessCardTimesEnd; this.sendBusinessCardTimesEnd = sendBusinessCardTimesEnd;
return this; return this;
} }
/** /**
* 设置 增加 发送名片次数 * 设置 增加 发送名片次数
* @param sendBusinessCardTimesIncrement * @param sendBusinessCardTimesIncrement
*/ */
public StaffQuery sendBusinessCardTimesIncrement(Integer sendBusinessCardTimesIncrement){ public StaffQuery sendBusinessCardTimesIncrement(Integer sendBusinessCardTimesIncrement){
this.sendBusinessCardTimesIncrement = sendBusinessCardTimesIncrement; this.sendBusinessCardTimesIncrement = sendBusinessCardTimesIncrement;
return this; return this;
} }
/** /**
* 设置 发送名片次数 * 设置 发送名片次数
* @param sendBusinessCardTimesList * @param sendBusinessCardTimesList
*/ */
public StaffQuery sendBusinessCardTimesList(List<Integer> sendBusinessCardTimesList){ public StaffQuery sendBusinessCardTimesList(List<Integer> sendBusinessCardTimesList){
this.sendBusinessCardTimesList = sendBusinessCardTimesList; this.sendBusinessCardTimesList = sendBusinessCardTimesList;
return this; return this;
} }
/** /**
* 设置 发送名片次数 * 设置 发送名片次数
* @param sendBusinessCardTimesNotList * @param sendBusinessCardTimesNotList
*/ */
public StaffQuery sendBusinessCardTimesNotList(List<Integer> sendBusinessCardTimesNotList){ public StaffQuery sendBusinessCardTimesNotList(List<Integer> sendBusinessCardTimesNotList){
this.sendBusinessCardTimesNotList = sendBusinessCardTimesNotList; this.sendBusinessCardTimesNotList = sendBusinessCardTimesNotList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public StaffQuery createUserId(Long createUserId){ public StaffQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public StaffQuery createUserIdStart(Long createUserIdStart){ public StaffQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public StaffQuery createUserIdEnd(Long createUserIdEnd){ public StaffQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public StaffQuery createUserIdIncrement(Long createUserIdIncrement){ public StaffQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public StaffQuery createUserIdList(List<Long> createUserIdList){ public StaffQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public StaffQuery createUserIdNotList(List<Long> createUserIdNotList){ public StaffQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public StaffQuery updateUserId(Long updateUserId){ public StaffQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public StaffQuery updateUserIdStart(Long updateUserIdStart){ public StaffQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public StaffQuery updateUserIdEnd(Long updateUserIdEnd){ public StaffQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public StaffQuery updateUserIdIncrement(Long updateUserIdIncrement){ public StaffQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public StaffQuery updateUserIdList(List<Long> updateUserIdList){ public StaffQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public StaffQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public StaffQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 邮件地址
* @param email
*/
public StaffQuery email(String email){
setEmail(email);
return this;
}
/**
* 设置 邮件地址
* @param emailList
*/
public StaffQuery emailList(List<String> emailList){
this.emailList = emailList;
return this;
}
/** /**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList * @return orConditionList
*/ */
public List<StaffQuery> getOrConditionList(){ public List<StaffQuery> getOrConditionList(){
return this.orConditionList; return this.orConditionList;
} }
/** /**
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList * @param orConditionList
*/ */
public void setOrConditionList(List<StaffQuery> orConditionList){ public void setOrConditionList(List<StaffQuery> orConditionList){
this.orConditionList = orConditionList; this.orConditionList = orConditionList;
} }
/** /**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) * 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList * @return andConditionList
*/ */
public List<StaffQuery> getAndConditionList(){ public List<StaffQuery> getAndConditionList(){
return this.andConditionList; return this.andConditionList;
} }
/** /**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) * 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList * @param andConditionList
*/ */
public void setAndConditionList(List<StaffQuery> andConditionList){ public void setAndConditionList(List<StaffQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -93,7 +93,7 @@ public class StaffController extends BaseCRUDJsonBodyMappingController<StaffServ ...@@ -93,7 +93,7 @@ public class StaffController extends BaseCRUDJsonBodyMappingController<StaffServ
} }
if(!ObjectUtils.isEmpty(entity.getPositionId())){ if(!ObjectUtils.isEmpty(entity.getPositionId())){
PositionEntity positionEntity = positionService.get(entity.getPositionId(), getContext()); PositionEntity positionEntity = positionService.get(entity.getPositionId(), getContext());
entity.setCompanyName(positionEntity.getPositionName()); entity.setPositionName(positionEntity.getPositionName());
} }
} }
} }
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment