2022-03-10 17:57:46 +08:00
|
|
|
|
package com.engine.salary.entity.datacollection.param;
|
|
|
|
|
|
|
2022-05-31 09:58:35 +08:00
|
|
|
|
import com.engine.salary.common.BaseQueryParam;
|
2022-03-10 17:57:46 +08:00
|
|
|
|
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
|
|
|
|
|
|
//数据采集-其他免税扣除查询参数
|
2022-05-31 09:58:35 +08:00
|
|
|
|
public class OtherDeductionQueryParam extends BaseQueryParam {
|
2022-03-10 17:57:46 +08:00
|
|
|
|
|
|
|
|
|
|
//主键id
|
|
|
|
|
|
private Collection<Long> ids;
|
|
|
|
|
|
|
|
|
|
|
|
//关键字(姓名、部门、工号)
|
|
|
|
|
|
private String keyword;
|
|
|
|
|
|
|
|
|
|
|
|
//主键id
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
|
|
//申报年月
|
|
|
|
|
|
private List<String> declareMonth;
|
2022-06-24 18:05:08 +08:00
|
|
|
|
private List<Date> declareMonthDate;
|
2022-03-10 17:57:46 +08:00
|
|
|
|
|
|
|
|
|
|
//姓名
|
|
|
|
|
|
private String username;
|
|
|
|
|
|
|
|
|
|
|
|
//员工id
|
|
|
|
|
|
private Long employeeId;
|
|
|
|
|
|
|
|
|
|
|
|
//个税扣缴义务人的主键id
|
|
|
|
|
|
private Long taxAgentId;
|
2022-06-09 17:45:28 +08:00
|
|
|
|
private Collection<Long> taxAgentIds;
|
2022-03-10 17:57:46 +08:00
|
|
|
|
|
|
|
|
|
|
//部门id
|
|
|
|
|
|
private List<Long> departmentIds;
|
|
|
|
|
|
|
|
|
|
|
|
//工号
|
|
|
|
|
|
private String jobNum;
|
|
|
|
|
|
|
|
|
|
|
|
//证件号
|
|
|
|
|
|
private String idNo;
|
|
|
|
|
|
|
|
|
|
|
|
//入职日期
|
|
|
|
|
|
private List<Date> hiredate;
|
|
|
|
|
|
|
|
|
|
|
|
//手机号
|
|
|
|
|
|
private String mobile;
|
|
|
|
|
|
|
|
|
|
|
|
//其他免税扣除id(获取明细)
|
|
|
|
|
|
private Long otherTaxExemptDeductionId;
|
2024-03-14 15:28:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//下载模板是否带数据
|
|
|
|
|
|
private boolean hasData;
|
2022-03-10 17:57:46 +08:00
|
|
|
|
}
|