| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * amb_invest_log
- * @author
- */
- public class AmbInvestLog implements Serializable {
- private Long id;
- private Long ambInvestId;
- /**
- * 金额
- */
- private BigDecimal amount;
- /**
- * 状态 0=草稿,1=待审核,2=同意,3=驳回
- */
- private Integer status;
- /**
- * 备注
- */
- private String comment;
- /**
- * 操作人
- */
- private String operator;
- private static final long serialVersionUID = 1L;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getAmbInvestId() {
- return ambInvestId;
- }
- public void setAmbInvestId(Long ambInvestId) {
- this.ambInvestId = ambInvestId;
- }
- public BigDecimal getAmount() {
- return amount;
- }
- public void setAmount(BigDecimal amount) {
- this.amount = amount;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getComment() {
- return comment;
- }
- public void setComment(String comment) {
- this.comment = comment;
- }
- public String getOperator() {
- return operator;
- }
- public void setOperator(String operator) {
- this.operator = operator;
- }
- }
|