Merge pull request 'Changement en DB du nom de la colonne personne_id en proprietaire_id dans la table enquete' (#12) from features/crud_entites into develop
All checks were successful
CD - Deploy on main / deploy (pull_request) Successful in 35s
All checks were successful
CD - Deploy on main / deploy (pull_request) Successful in 35s
Reviewed-on: #12
This commit was merged in pull request #12.
This commit is contained in:
@@ -13,16 +13,16 @@ import io.swagger.v3.oas.annotations.servers.Server;
|
||||
@OpenAPIDefinition(
|
||||
info = @Info(
|
||||
contact = @Contact(
|
||||
name = "Novatic",
|
||||
email = "contact@novatic.org",
|
||||
url = "https://novatic.org"
|
||||
name = "ABS Company Bénin",
|
||||
email = "contact@abs.org",
|
||||
url = "https://abs.org"
|
||||
),
|
||||
description = "Cette page présente toutes les ressources API pour la gestion des données socio-foncières et fiscales",
|
||||
title = "FISCAD",
|
||||
version = "1.0",
|
||||
license = @License(
|
||||
name = "Licence name",
|
||||
url = "https://novatic.org"
|
||||
url = "https://abs.org"
|
||||
),
|
||||
termsOfService = "Terms of service"
|
||||
),
|
||||
@@ -33,7 +33,7 @@ import io.swagger.v3.oas.annotations.servers.Server;
|
||||
),
|
||||
@Server(
|
||||
description = "TEST ENV (http)",
|
||||
url = "http://novatic.vps.webdock.cloud:8282"
|
||||
url = "https://backend.fiscad-test.novatic.org"
|
||||
),
|
||||
@Server(
|
||||
description = "PROD ENV (https)",
|
||||
|
||||
@@ -15,7 +15,7 @@ import java.io.Serializable;
|
||||
@Setter
|
||||
@Table(
|
||||
indexes = {
|
||||
@Index(name = "idx_terminal_external_bat", columnList = "terminalId, externalKey")
|
||||
@Index(name = "idx_terminal_external_dnc", columnList = "terminalId, externalKey")
|
||||
}
|
||||
)
|
||||
public class MobileDataDeclarationNc extends BaseEntity implements Serializable {
|
||||
|
||||
@@ -49,8 +49,9 @@ public class EnqueteActivite extends BaseEntity implements Serializable {
|
||||
@JsonDeserialize(using = LocalDateDeserializer.class)
|
||||
private LocalDate dateEnquete;
|
||||
|
||||
@Column(columnDefinition = "false")
|
||||
@Column(columnDefinition = "boolean default false", nullable = false)
|
||||
private boolean estDeclarer;
|
||||
|
||||
private String nc;
|
||||
private Long ChiffreAffaire;
|
||||
private String NumeroRccm;
|
||||
|
||||
Reference in New Issue
Block a user