32 lines
623 B
Java
32 lines
623 B
Java
|
|
package com.engine.salary.entity.taxdeclaration.dto;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
import java.time.YearMonth;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: 个税申报表信息
|
||
|
|
* @author: xiajun
|
||
|
|
* @modified By: xiajun
|
||
|
|
* @date: Created in 12/16/21 3:22 PM
|
||
|
|
* @version:v1.0
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class TaxDeclarationInfoDTO {
|
||
|
|
|
||
|
|
//薪资所属月")
|
||
|
|
private YearMonth salaryMonth;
|
||
|
|
|
||
|
|
//个税扣缴义务人id")
|
||
|
|
private Long taxAgentId;
|
||
|
|
|
||
|
|
//个税扣缴义务人名称")
|
||
|
|
private String taxAgentName;
|
||
|
|
}
|