Skip to content

Commit

Permalink
Up to version 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
criluc committed Jun 4, 2024
1 parent 235fedf commit 2e6e5d1
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2024-06-04
### Added
- API Rest per inserimento delle assenze

## [0.3.0] - 2024-04-09
### Added
- Aggiunta gestione e visualizzazione data di nascita e residenza delle persone
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.4.0
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@Configuration
@OpenAPIDefinition(
info = @Info(title = "ePAS Service",
version = "4.0.0-beta.1",
version = "4.0.0-beta.2",
description = "ePAS Service contains all the business logic and related REST endpoints"
+ " to manage all the personnel information."),
servers = {@Server(url = "/", description = "ePAS Service URL")}
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/cnr/iit/epas/dto/v4/ContractBaseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
import io.swagger.v3.oas.annotations.media.Schema;
import java.time.LocalDate;
import lombok.Data;
import lombok.ToString;

/**
* DTO con i dati per la creazione di un nuovo contratto.
*
* @author Cristian Lucchesi
*
*/
@ToString
@Data
public class ContractBaseDto {

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/cnr/iit/epas/dto/v4/ContractCreateDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@
import javax.validation.constraints.NotNull;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
* DTO con i dati per la creazione di un nuovo contratto.
*
* @author Cristian Lucchesi
*
*/
@ToString(callSuper = true)
@Data
@EqualsAndHashCode(callSuper = true)
public class ContractCreateDto extends ContractBaseDto {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/cnr/iit/epas/dto/v4/ContractShowDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@
import java.util.List;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
* DTO con le info principali di un contratto.
*/
@ToString(callSuper = true)
@Data
@EqualsAndHashCode(callSuper = true)
public class ContractShowDto extends ContractShowTerseDto {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
* DTO per le informazioni di base di un contratto.
*
* @author Cristian Lucchesi
*
*/
@ToString
@Data
@EqualsAndHashCode(callSuper = true)
public class ContractShowTerseDto extends ContractBaseDto {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/it/cnr/iit/epas/dto/v4/ContractUpdateDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@
import javax.validation.constraints.NotNull;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
* Dto per contenere le informazioni di aggiornamento di un contratto.
*
* @author Cristian Lucchesi
*
*/
@ToString(callSuper = true)
@Data
@EqualsAndHashCode(callSuper = true)
public class ContractUpdateDto extends ContractBaseDto {
Expand Down

0 comments on commit 2e6e5d1

Please sign in to comment.