revu du controleur de la fiche enquete
This commit is contained in:
@@ -19,17 +19,16 @@ import java.io.Serializable;
|
||||
@AllArgsConstructor
|
||||
@Where(clause = " deleted = false")
|
||||
public class Quartier extends BaseEntity implements Serializable {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private Long id;
|
||||
private String code;
|
||||
private String nom;
|
||||
@JsonIgnore
|
||||
// @JsonIgnore
|
||||
@ManyToOne
|
||||
private Arrondissement arrondissement;
|
||||
@JsonIgnore
|
||||
@OneToOne(mappedBy = "quartier")
|
||||
private Bloc bloc;
|
||||
// @JsonIgnore
|
||||
// @OneToOne(mappedBy = "quartier")
|
||||
// private Bloc bloc;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user