From 1cf6c07b830af4926393067108a192b3687e71de Mon Sep 17 00:00:00 2001 From: Saurav Mishra Date: Thu, 12 Mar 2026 10:39:41 +0530 Subject: [PATCH 1/2] add new column in rmnch table for death and child record --- .../rmnch/RMNCHBeneficiaryDetailsRmnch.java | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java b/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java index e477ea5d..0c076c9a 100644 --- a/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java +++ b/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java @@ -499,4 +499,52 @@ public class RMNCHBeneficiaryDetailsRmnch { @Column(name = "noOfDaysForDelivery") private Integer noOfDaysForDelivery; + + @Expose + private Boolean isDeath; + + @Expose + private String isDeathValue; + + @Expose + private String dateOfDeath; + + @Expose + private String timeOfDeath; + + @Expose + private String reasonOfDeath; + + @Expose + private Integer reasonOfDeathId; + + @Expose + private String placeOfDeath; + + @Expose + private Integer placeOfDeathId; + + @Expose + private String otherPlaceOfDeath; + + @Expose + private Boolean isSpouseAdded; + + + @Expose + private Boolean isChildrenAdded; + + @Expose + private Boolean isMarried; + + @Expose + private Boolean doYouHavechildren; + + + @Expose + private Integer noofAlivechildren; + + @Expose + private Integer noOfchildren; + } From c32deba8bf584159fb3fcd79ff6bcb891b68028e Mon Sep 17 00:00:00 2001 From: Saurav Mishra Date: Thu, 12 Mar 2026 12:10:57 +0530 Subject: [PATCH 2/2] add new column in rmnch table for death and child record --- .../identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java b/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java index 0c076c9a..4cab210c 100644 --- a/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java +++ b/src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java @@ -547,4 +547,7 @@ public class RMNCHBeneficiaryDetailsRmnch { @Expose private Integer noOfchildren; + @Expose + private Boolean isDeactivate; + }