2022-04-16 15:33:51 +08:00
|
|
|
package com.engine.salary.entity.taxdeclaration.param;
|
|
|
|
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
import java.time.YearMonth;
|
|
|
|
|
|
|
|
|
|
/**
|
2022-06-07 15:43:22 +08:00
|
|
|
* 生成个税申报表参数
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
2022-04-16 15:33:51 +08:00
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
public class TaxDeclarationSaveParam {
|
|
|
|
|
|
2022-06-07 15:43:22 +08:00
|
|
|
/**
|
|
|
|
|
* 薪资所属月
|
|
|
|
|
*/
|
2022-04-16 15:33:51 +08:00
|
|
|
private YearMonth salaryMonth;
|
|
|
|
|
|
2022-06-07 15:43:22 +08:00
|
|
|
/**
|
|
|
|
|
* 个税扣缴义务人
|
|
|
|
|
*/
|
|
|
|
|
private Long taxAgentId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 备注
|
|
|
|
|
*/
|
2022-04-16 15:33:51 +08:00
|
|
|
private String description;
|
|
|
|
|
|
|
|
|
|
private String salaryMonthStr;
|
|
|
|
|
}
|