| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.TacSlbLawIndex;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.List;
- public class TacSlbLawIndexDto {
- @ApiModelProperty("文档id")
- private int docId;
- @ApiModelProperty("法规章节")
- private String lawTitle;
- @ApiModelProperty("获取法律法规")
- private List<TacSlbLawIndex> children;
- public int getDocId() {
- return docId;
- }
- public void setDocId(int docId) {
- this.docId = docId;
- }
- public String getLawTitle() {
- return lawTitle;
- }
- public void setLawTitle(String lawTitle) {
- this.lawTitle = lawTitle;
- }
- public List<TacSlbLawIndex> getChildren() {
- return children;
- }
- public void setChildren(List<TacSlbLawIndex> children) {
- this.children = children;
- }
- }
|