Skip to content

Commit a6818d4

Browse files
Merge pull request #144 from PSMRI/add/new_column_in_rmnch
add new column in rmnch table for death and child record
2 parents 8b862a8 + c32deba commit a6818d4

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

src/main/java/com/iemr/common/identity/data/rmnch/RMNCHBeneficiaryDetailsRmnch.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,4 +499,55 @@ public class RMNCHBeneficiaryDetailsRmnch {
499499
@Column(name = "noOfDaysForDelivery")
500500
private Integer noOfDaysForDelivery;
501501

502+
503+
@Expose
504+
private Boolean isDeath;
505+
506+
@Expose
507+
private String isDeathValue;
508+
509+
@Expose
510+
private String dateOfDeath;
511+
512+
@Expose
513+
private String timeOfDeath;
514+
515+
@Expose
516+
private String reasonOfDeath;
517+
518+
@Expose
519+
private Integer reasonOfDeathId;
520+
521+
@Expose
522+
private String placeOfDeath;
523+
524+
@Expose
525+
private Integer placeOfDeathId;
526+
527+
@Expose
528+
private String otherPlaceOfDeath;
529+
530+
@Expose
531+
private Boolean isSpouseAdded;
532+
533+
534+
@Expose
535+
private Boolean isChildrenAdded;
536+
537+
@Expose
538+
private Boolean isMarried;
539+
540+
@Expose
541+
private Boolean doYouHavechildren;
542+
543+
544+
@Expose
545+
private Integer noofAlivechildren;
546+
547+
@Expose
548+
private Integer noOfchildren;
549+
550+
@Expose
551+
private Boolean isDeactivate;
552+
502553
}

0 commit comments

Comments
 (0)