32 lines
587 B
Java
32 lines
587 B
Java
|
|
package com.engine.salary.entity.taxdeclaration.param;
|
||
|
|
|
||
|
|
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/15/21 9:44 AM
|
||
|
|
* @version:v1.0
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class TaxDeclarationSaveParam {
|
||
|
|
|
||
|
|
//薪资所属月")
|
||
|
|
private YearMonth salaryMonth;
|
||
|
|
|
||
|
|
//备注")
|
||
|
|
private String description;
|
||
|
|
|
||
|
|
private String salaryMonthStr;
|
||
|
|
|
||
|
|
}
|