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;
|
2022-04-20 21:36:27 +08:00
|
|
|
import weaver.hrm.User;
|
2022-04-16 15:33:51 +08:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2022-04-20 21:36:27 +08:00
|
|
|
private User user;
|
|
|
|
|
|
2022-04-16 15:33:51 +08:00
|
|
|
}
|