package pwc.taxtech.atms.dto.vatdto;

import java.math.BigDecimal;

public class ManualDataSourceDto {
    Long cellId;
    String cellTemplateId;
    String name;
    String description;
    BigDecimal amount;
    String keyinData;
    String projectId;
    String serviceTypeId;
    Integer period;
    Long reportId;
    Long id;
    String penValue;//穿透修改值
    String accountCode;

    public String getAccountCode() {
        return accountCode;
    }

    public void setAccountCode(String accountCode) {
        this.accountCode = accountCode;
    }

    public String getPenValue() {
        return penValue;
    }

    public void setPenValue(String penValue) {
        this.penValue = penValue;
    }

    public Long getCellId() {
        return this.cellId;
    }

    public void setCellId(Long cellId) {
        this.cellId = cellId;
    }

    public String getCellTemplateId() {
        return this.cellTemplateId;
    }

    public void setCellTemplateId(String cellTemplateId) {
        this.cellTemplateId = cellTemplateId;
    }

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

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

    public String getDescription() {
        return this.description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public BigDecimal getAmount() {
        return this.amount;
    }

    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }

    public String getKeyinData() {
        return this.keyinData;
    }

    public void setKeyinData(String keyinData) {
        this.keyinData = keyinData;
    }

    public String getProjectId() {
        return this.projectId;
    }

    public void setProjectId(String projectId) {
        this.projectId = projectId;
    }

    public String getServiceTypeId() {
        return this.serviceTypeId;
    }

    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
    }

    public Integer getPeriod() {
        return this.period;
    }

    public void setPeriod(Integer period) {
        this.period = period;
    }

    public Long getReportId() {
        return this.reportId;
    }

    public void setReportId(Long reportId) {
        this.reportId = reportId;
    }

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

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

    @Override
    public String toString() {
        return "ManualDataSourceDto{" +
                "cellId=" + cellId +
                ", cellTemplateId='" + cellTemplateId + '\'' +
                ", name='" + name + '\'' +
                ", description='" + description + '\'' +
                ", amount=" + amount +
                ", keyinData='" + keyinData + '\'' +
                ", projectId='" + projectId + '\'' +
                ", serviceTypeId='" + serviceTypeId + '\'' +
                ", period=" + period +
                ", reportId=" + reportId +
                ", id=" + id +
                ", penValue='" + penValue + '\'' +
                ", accountCode='" + accountCode + '\'' +
                '}';
    }
}