| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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 List<SonExpenseAccountDetails> detList;
- 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;
- }
- }
|