| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * expense_account
- * @author
- */
- public class ExpenseAccount implements Serializable {
- private Integer id;
- /**
- * 公出编号
- */
- private Integer prid;
- /**
- * 订单编号
- */
- private String orderNo;
- /**
- * 报销人
- */
- private String aid;
- /**
- * 报销人名称
- */
- private String aname;
- /**
- * 分类 0=其他,1=差旅费,2=非业务报销, 3=第三方付款,4=申请借支
- */
- private Integer type;
- /**
- * 其他状态说明
- */
- private String typeOther;
- /**
- * 状态 0=草稿,1=审核中,2=完成,3=驳回
- */
- private Integer status;
- /**
- * 流程状态 0=巴员发起,1=上级审核,2=财务审核,3=总经理审核,4=董事长审核
- */
- private Integer processStatus;
- /**
- * 总金额
- */
- private BigDecimal totalAmount;
- /**
- * 合同图片
- */
- private String attachmentUrl;
- /**
- * 申请部门
- */
- private String applyDep;
- /**
- * 支付部门
- */
- private String payDep;
- /**
- * 报销帐号编号
- */
- private Integer eaaid;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 公出企业地址
- */
- private String districtName;
- /**
- * 公司名称
- */
- private String userNames;
- /**
- * 公出开始时间
- */
- private Date releaseStart;
- /**
- * 公出结束时间
- */
- private Date releaseEnd;
- /**
- * 时长
- */
- private Double duration;
- /**
- * 审核人员名称
- */
- private String examineName;
- private static final long serialVersionUID = 1L;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getPrid() {
- return prid;
- }
- public void setPrid(Integer prid) {
- this.prid = prid;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public String getAid() {
- return aid;
- }
- public void setAid(String aid) {
- this.aid = aid;
- }
- public String getAname() {
- return aname;
- }
- public void setAname(String aname) {
- this.aname = aname;
- }
- 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 Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public Integer getProcessStatus() {
- return processStatus;
- }
- public void setProcessStatus(Integer processStatus) {
- this.processStatus = processStatus;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public String getAttachmentUrl() {
- return attachmentUrl;
- }
- public void setAttachmentUrl(String attachmentUrl) {
- this.attachmentUrl = attachmentUrl;
- }
- public String getApplyDep() {
- return applyDep;
- }
- public void setApplyDep(String applyDep) {
- this.applyDep = applyDep;
- }
- public String getPayDep() {
- return payDep;
- }
- public void setPayDep(String payDep) {
- this.payDep = payDep;
- }
- public Integer getEaaid() {
- return eaaid;
- }
- public void setEaaid(Integer eaaid) {
- this.eaaid = eaaid;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getDistrictName() {
- return districtName;
- }
- public void setDistrictName(String districtName) {
- this.districtName = districtName;
- }
- public String getUserNames() {
- return userNames;
- }
- public void setUserNames(String userNames) {
- this.userNames = userNames;
- }
- public Date getReleaseStart() {
- return releaseStart;
- }
- public void setReleaseStart(Date releaseStart) {
- this.releaseStart = releaseStart;
- }
- public Date getReleaseEnd() {
- return releaseEnd;
- }
- public void setReleaseEnd(Date releaseEnd) {
- this.releaseEnd = releaseEnd;
- }
- public Double getDuration() {
- return duration;
- }
- public void setDuration(Double duration) {
- this.duration = duration;
- }
- public String getExamineName() {
- return examineName;
- }
- public void setExamineName(String examineName) {
- this.examineName = examineName;
- }
- }
|