package com.goafanti.expenseAccount.bo; import java.math.BigDecimal; import java.util.List; public class SonExpenseAccount { private Integer id; private BigDecimal totalAmount; private Integer type; private String typeOther; private String userNames; private String releaseStart; private String releaseEnd; private String districtName; private Integer secondaryType; private String secondaryTypeOther; private String attachmentUrl; private List detList; public Integer getSecondaryType() { return secondaryType; } public void setSecondaryType(Integer secondaryType) { this.secondaryType = secondaryType; } public String getSecondaryTypeOther() { return secondaryTypeOther; } public void setSecondaryTypeOther(String secondaryTypeOther) { this.secondaryTypeOther = secondaryTypeOther; } public String getAttachmentUrl() { return attachmentUrl; } public void setAttachmentUrl(String attachmentUrl) { this.attachmentUrl = attachmentUrl; } public String getDistrictName() { return districtName; } public void setDistrictName(String districtName) { this.districtName = districtName; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public BigDecimal getTotalAmount() { return totalAmount; } public void setTotalAmount(BigDecimal totalAmount) { this.totalAmount = totalAmount; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public String getTypeOther() { return typeOther; } public void setTypeOther(String typeOther) { this.typeOther = typeOther; } public String getUserNames() { return userNames; } public void setUserNames(String userNames) { this.userNames = userNames; } public String getReleaseStart() { return releaseStart; } public void setReleaseStart(String releaseStart) { this.releaseStart = releaseStart; } public String getReleaseEnd() { return releaseEnd; } public void setReleaseEnd(String releaseEnd) { this.releaseEnd = releaseEnd; } public List getDetList() { return detList; } public void setDetList(List detList) { this.detList = detList; } }