weaver-hrm-salary/src/com/engine/salary/entity/datacollection/param/OtherDeductionQueryParam.java

66 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.entity.datacollection.param;
import com.engine.salary.common.BaseQueryParam;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Collection;
import java.util.Date;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
//数据采集-其他免税扣除查询参数
public class OtherDeductionQueryParam extends BaseQueryParam {
//主键id
private Collection<Long> ids;
//关键字(姓名、部门、工号)
private String keyword;
//主键id
private Long id;
//申报年月
private List<String> declareMonth;
private List<Date> declareMonthDate;
//姓名
private String username;
//员工id
private Long employeeId;
//个税扣缴义务人的主键id
private Long taxAgentId;
private Collection<Long> taxAgentIds;
//部门id
private List<Long> departmentIds;
//工号
private String jobNum;
//证件号
private String idNo;
//入职日期
private List<Date> hiredate;
//手机号
private String mobile;
//其他免税扣除id获取明细
private Long otherTaxExemptDeductionId;
//下载模板是否带数据
private boolean hasData;
}