tech.deepdreams.worker.api.models.Deduction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-api Show documentation
Show all versions of worker-api Show documentation
Payroll Worker API project for Java 17
package tech.deepdreams.worker.api.models;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
@Data
public class Deduction {
private String code;
private String label ;
private Double base ;
private Double employeeRate ;
private Double employeeAmount ;
private Double employerRate ;
private Double employerAmount ;
private Double totalAmount ;
}