TemplateByGroupDto.java 854 Bytes
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7
package pwc.taxtech.atms.dto.vatdto;

import pwc.taxtech.atms.dto.TemplateDto;

import java.util.List;

public class TemplateByGroupDto {
8 9 10 11
    private Long id;
    private String name;
    private int OrderIndex;
    private List<TemplateDto> children;
eddie.woo's avatar
eddie.woo committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getOrderIndex() {
        return this.OrderIndex;
    }

    public void setOrderIndex(int orderIndex) {
        this.OrderIndex = orderIndex;
    }

    public List<TemplateDto> getChildren() {
        return this.children;
    }

    public void setChildren(List<TemplateDto> children) {
        this.children = children;
    }
frank.xa.zhang's avatar
frank.xa.zhang committed
44
}