998fb59e359e098e2da3ab67df88259a2d80fe39.svn-base 883 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.TacSlbLawIndex;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.util.List;
  5. public class TacSlbLawIndexDto {
  6. @ApiModelProperty("文档id")
  7. private int docId;
  8. @ApiModelProperty("法规章节")
  9. private String lawTitle;
  10. @ApiModelProperty("获取法律法规")
  11. private List<TacSlbLawIndex> children;
  12. public int getDocId() {
  13. return docId;
  14. }
  15. public void setDocId(int docId) {
  16. this.docId = docId;
  17. }
  18. public String getLawTitle() {
  19. return lawTitle;
  20. }
  21. public void setLawTitle(String lawTitle) {
  22. this.lawTitle = lawTitle;
  23. }
  24. public List<TacSlbLawIndex> getChildren() {
  25. return children;
  26. }
  27. public void setChildren(List<TacSlbLawIndex> children) {
  28. this.children = children;
  29. }
  30. }