19 lines
538 B
Java
19 lines
538 B
Java
package com.faf223.expensetrackerfaf.dto;
|
|
|
|
import jakarta.validation.constraints.DecimalMin;
|
|
import jakarta.validation.constraints.NotNull;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
public class IncomeCreationDTO {
|
|
@NotNull(message = "Category must not be null")
|
|
private int incomeCategory;
|
|
|
|
@NotNull(message = "Amount must not be null")
|
|
@DecimalMin(value = "0.0", inclusive = false, message = "Amount must be positive")
|
|
private BigDecimal amount;
|
|
} |