Created
February 10, 2014 22:32
-
-
Save bmchild/8925602 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PolicyAgreementBean { | |
| @Valid | |
| private List<PolicyAgreementUserAnswerBean> beans; | |
| public List<PolicyAgreementUserAnswerBean> getBeans() { | |
| return beans; | |
| } | |
| public void setBeans(List<PolicyAgreementUserAnswerBean> beans) { | |
| this.beans = beans; | |
| } | |
| } | |
| public class PolicyAgreementUserAnswerBean { | |
| @NotNull | |
| private Long agreementId; | |
| @NotNull | |
| private Long answerId; | |
| public Long getAgreementId() { | |
| return agreementId; | |
| } | |
| public void setAgreementId(Long agreementId) { | |
| this.agreementId = agreementId; | |
| } | |
| public Long getAnswerId() { | |
| return answerId; | |
| } | |
| public void setAnswerId(Long answerId) { | |
| this.answerId = answerId; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment