@@ -152,6 +152,12 @@ public class ActivityDTO {
152152 private String remarks ;
153153 @ JsonProperty ("OtherDetails" )
154154 private String otherDetails ;
155+ @ JsonProperty ("EducationandHealth" )
156+ private boolean isEducationAndHealth ;
157+ @ JsonProperty ("NumberOfStudentsMale" )
158+ private int maleStudent ;
159+ @ JsonProperty ("NumberOfStudentsFemale" )
160+ private int femaleStudent ;
155161 /**
156162 * No args constructor for use in serialization
157163 */
@@ -171,6 +177,9 @@ public ActivityDTO() {
171177 * @param noofparticipantsS2S
172178 * @param nos
173179 * @param typeofInitiative
180+ * @param isEducationAndHealth
181+ * @param maleStudent
182+ * @param femaleStudent
174183 * @param diameter
175184 * @param activityEndDate
176185 * @param measurementType
@@ -217,7 +226,7 @@ public ActivityDTO(String sourceId, String nameOfAccount, String activityCategor
217226 int noofparticipantsMaleCFW , int noofparticipantsMaleNJPC , int noofparticipantsNJPCOther ,
218227 int noofparticipantsCFWOther , Long noofparticipantsS2S ,
219228 Long noofWorkingDays , Integer nos , String objectiveofCFWwork , String schoolAanganwadiLearningCenterName ,
220- String state , String typeofInitiative , String otherObjective , String otherSubType ,
229+ String state , String typeofInitiative , boolean isEducationAndHealth , int maleStudent , int femaleStudent , String otherObjective , String otherSubType ,
221230 String createdBy , String modifiedBy , String beforeImplementationPhotograph , String duringImplementationPhotograph ,
222231 String afterImplementationPhotograph , String wasUndertakingFormFilled , String formCrossChecked , String remarks ,
223232 String otherDetails ) {
@@ -261,6 +270,9 @@ public ActivityDTO(String sourceId, String nameOfAccount, String activityCategor
261270 this .schoolAanganwadiLearningCenterName = schoolAanganwadiLearningCenterName ;
262271 this .state = state ;
263272 this .typeofInitiative = typeofInitiative ;
273+ this .isEducationAndHealth = isEducationAndHealth ;
274+ this .maleStudent = maleStudent ;
275+ this .femaleStudent = femaleStudent ;
264276 this .createdBy = createdBy ;
265277 this .modifiedBy = modifiedBy ;
266278 this .beforeImplementationPhotograph = beforeImplementationPhotograph ;
@@ -742,4 +754,34 @@ public String getOtherDetails() {
742754 public void setOtherDetails (String otherDetails ) {
743755 this .otherDetails = otherDetails ;
744756 }
757+
758+ @ JsonProperty ("EducationandHealth" )
759+ public boolean isEducationAndHealth () {
760+ return isEducationAndHealth ;
761+ }
762+
763+ @ JsonProperty ("EducationandHealth" )
764+ public void setEducationAndHealth (boolean educationAndHealth ) {
765+ isEducationAndHealth = educationAndHealth ;
766+ }
767+
768+ @ JsonProperty ("NumberOfStudentsMale" )
769+ public int getMaleStudent () {
770+ return maleStudent ;
771+ }
772+
773+ @ JsonProperty ("NumberOfStudentsMale" )
774+ public void setMaleStudent (int maleStudent ) {
775+ this .maleStudent = maleStudent ;
776+ }
777+
778+ @ JsonProperty ("NumberOfStudentsFemale" )
779+ public int getFemaleStudent () {
780+ return femaleStudent ;
781+ }
782+
783+ @ JsonProperty ("NumberOfStudentsFemale" )
784+ public void setFemaleStudent (int femaleStudent ) {
785+ this .femaleStudent = femaleStudent ;
786+ }
745787}
0 commit comments