| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- 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<SonExpenseAccountDetails> 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<SonExpenseAccountDetails> getDetList() {
- return detList;
- }
- public void setDetList(List<SonExpenseAccountDetails> detList) {
- this.detList = detList;
- }
- }
|