AmbInvestLog.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. /**
  5. * amb_invest_log
  6. * @author
  7. */
  8. public class AmbInvestLog implements Serializable {
  9. private Long id;
  10. private Long ambInvestId;
  11. /**
  12. * 金额
  13. */
  14. private BigDecimal amount;
  15. /**
  16. * 状态 0=草稿,1=待审核,2=同意,3=驳回
  17. */
  18. private Integer status;
  19. /**
  20. * 备注
  21. */
  22. private String comment;
  23. /**
  24. * 操作人
  25. */
  26. private String operator;
  27. private static final long serialVersionUID = 1L;
  28. public Long getId() {
  29. return id;
  30. }
  31. public void setId(Long id) {
  32. this.id = id;
  33. }
  34. public Long getAmbInvestId() {
  35. return ambInvestId;
  36. }
  37. public void setAmbInvestId(Long ambInvestId) {
  38. this.ambInvestId = ambInvestId;
  39. }
  40. public BigDecimal getAmount() {
  41. return amount;
  42. }
  43. public void setAmount(BigDecimal amount) {
  44. this.amount = amount;
  45. }
  46. public Integer getStatus() {
  47. return status;
  48. }
  49. public void setStatus(Integer status) {
  50. this.status = status;
  51. }
  52. public String getComment() {
  53. return comment;
  54. }
  55. public void setComment(String comment) {
  56. this.comment = comment;
  57. }
  58. public String getOperator() {
  59. return operator;
  60. }
  61. public void setOperator(String operator) {
  62. this.operator = operator;
  63. }
  64. }