123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package com.ghsc.partybuild.model;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.util.Date;
- @JsonIgnoreProperties(ignoreUnknown = true)
- public class DjFundsbudget {
- private String fundsbudgetid;
- private String partycode;
- private Integer year;
- private Integer activityfunds;
- private Integer rewardfunds;
- private Date createtime;
- private String createuserid;
- private String createusername;
- private Date updatetime;
- private String updateuserid;
- private String updateusername;
- private Date operatetime;
- private String operatestate;
- private String syncstate;
- public String getFundsbudgetid() {
- return fundsbudgetid;
- }
- public void setFundsbudgetid(String fundsbudgetid) {
- this.fundsbudgetid = fundsbudgetid == null ? null : fundsbudgetid.trim();
- }
- public String getPartycode() {
- return partycode;
- }
- public void setPartycode(String partycode) {
- this.partycode = partycode == null ? null : partycode.trim();
- }
- public Integer getYear() {
- return year;
- }
- public void setYear(Integer year) {
- this.year = year;
- }
- public Integer getActivityfunds() {
- return activityfunds;
- }
- public void setActivityfunds(Integer activityfunds) {
- this.activityfunds = activityfunds;
- }
- public Integer getRewardfunds() {
- return rewardfunds;
- }
- public void setRewardfunds(Integer rewardfunds) {
- this.rewardfunds = rewardfunds;
- }
- public Date getCreatetime() {
- return createtime;
- }
- public void setCreatetime(Date createtime) {
- this.createtime = createtime;
- }
- public String getCreateuserid() {
- return createuserid;
- }
- public void setCreateuserid(String createuserid) {
- this.createuserid = createuserid == null ? null : createuserid.trim();
- }
- public String getCreateusername() {
- return createusername;
- }
- public void setCreateusername(String createusername) {
- this.createusername = createusername == null ? null : createusername.trim();
- }
- public Date getUpdatetime() {
- return updatetime;
- }
- public void setUpdatetime(Date updatetime) {
- this.updatetime = updatetime;
- }
- public String getUpdateuserid() {
- return updateuserid;
- }
- public void setUpdateuserid(String updateuserid) {
- this.updateuserid = updateuserid == null ? null : updateuserid.trim();
- }
- public String getUpdateusername() {
- return updateusername;
- }
- public void setUpdateusername(String updateusername) {
- this.updateusername = updateusername == null ? null : updateusername.trim();
- }
- public Date getOperatetime() {
- return operatetime;
- }
- public void setOperatetime(Date operatetime) {
- this.operatetime = operatetime;
- }
- public String getOperatestate() {
- return operatestate;
- }
- public void setOperatestate(String operatestate) {
- this.operatestate = operatestate == null ? null : operatestate.trim();
- }
- public String getSyncstate() {
- return syncstate;
- }
- public void setSyncstate(String syncstate) {
- this.syncstate = syncstate == null ? null : syncstate.trim();
- }
- }
|