|
32 | 32 | "NoofparticipantsFemaleNJPC", |
33 | 33 | "NoofparticipantsNJPCOther", |
34 | 34 | "NoofparticipantsS2S", |
| 35 | + "NoofparticipantsNJPC", |
35 | 36 | "NoofdaysofParticipationS2S", |
36 | 37 | "NoofdaysofParticipationNJPC", |
37 | 38 | "ActivityConductedWithStudents", |
@@ -116,6 +117,8 @@ public class ActivityDTO { |
116 | 117 | private int noofparticipantsNJPCOther; |
117 | 118 | @JsonProperty("NoofparticipantsCFWOther") |
118 | 119 | private int noofparticipantsCFWOther; |
| 120 | + @JsonProperty("NoofparticipantsNJPC") |
| 121 | + private Long noofparticipantsNJPC; |
119 | 122 | @JsonProperty("NoofparticipantsS2S") |
120 | 123 | private Long noofparticipantsS2S; |
121 | 124 | @JsonProperty("NoofWorkingDays") |
@@ -175,6 +178,7 @@ public ActivityDTO() { |
175 | 178 | * @param noofdaysofParticipationNJPC |
176 | 179 | * @param noofWorkingDays |
177 | 180 | * @param noofparticipantsS2S |
| 181 | + * @param noofparticipantsNJPC |
178 | 182 | * @param nos |
179 | 183 | * @param typeofInitiative |
180 | 184 | * @param isEducationAndHealth |
@@ -224,7 +228,7 @@ public ActivityDTO(String sourceId, String nameOfAccount, String activityCategor |
224 | 228 | String localityVillageName, String tolaMohalla, String measurementType, Long noofdaysofParticipationNJPC, |
225 | 229 | Long noofdaysofParticipationS2S, int noofparticipantsFemaleCFW, int noofparticipantsFemaleNJPC, |
226 | 230 | int noofparticipantsMaleCFW, int noofparticipantsMaleNJPC, int noofparticipantsNJPCOther, |
227 | | - int noofparticipantsCFWOther, Long noofparticipantsS2S, |
| 231 | + int noofparticipantsCFWOther, Long noofparticipantsS2S,Long noofparticipantsNJPC, |
228 | 232 | Long noofWorkingDays, Integer nos, String objectiveofCFWwork, String schoolAanganwadiLearningCenterName, |
229 | 233 | String state, String typeofInitiative, boolean isEducationAndHealth,int maleStudent,int femaleStudent, String otherObjective, String otherSubType, |
230 | 234 | String createdBy, String modifiedBy, String beforeImplementationPhotograph, String duringImplementationPhotograph, |
@@ -262,6 +266,7 @@ public ActivityDTO(String sourceId, String nameOfAccount, String activityCategor |
262 | 266 | this.noofparticipantsNJPCOther = noofparticipantsNJPCOther; |
263 | 267 | this.noofparticipantsCFWOther = noofparticipantsCFWOther; |
264 | 268 | this.noofparticipantsS2S = noofparticipantsS2S; |
| 269 | + this.noofparticipantsNJPC = noofparticipantsNJPC; |
265 | 270 | this.noofWorkingDays = noofWorkingDays; |
266 | 271 | this.nos = nos; |
267 | 272 | this.objectiveofCFWwork = objectiveofCFWwork; |
@@ -590,6 +595,16 @@ public void setNoofparticipantsS2S(Long noofparticipantsS2S) { |
590 | 595 | this.noofparticipantsS2S = noofparticipantsS2S; |
591 | 596 | } |
592 | 597 |
|
| 598 | + @JsonProperty("NoofparticipantsNJPC") |
| 599 | + public Long getNoofparticipantsNJPC() { |
| 600 | + return noofparticipantsNJPC; |
| 601 | + } |
| 602 | + |
| 603 | + @JsonProperty("NoofparticipantsNJPC") |
| 604 | + public void setNoofparticipantsNJPC(Long noofparticipantsNJPC) { |
| 605 | + this.noofparticipantsNJPC = noofparticipantsNJPC; |
| 606 | + } |
| 607 | + |
593 | 608 | @JsonProperty("NoofWorkingDays") |
594 | 609 | public Long getNoofWorkingDays() { |
595 | 610 | return noofWorkingDays; |
|
0 commit comments