ContractStatusTracking.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.fuzamei.entity;
  2. public class ContractStatusTracking {
  3. private Integer id; //主键id
  4. private Integer business_id; //合同对应的业务id号
  5. private String contract_name; //合同名称
  6. private String contract_party; //签约方
  7. private Long update_time; //更新时间
  8. private Integer status_id; //状态id号
  9. private String status_name; //状态名
  10. public Integer getId() {
  11. return id;
  12. }
  13. public void setId(Integer id) {
  14. this.id = id;
  15. }
  16. public Integer getBusiness_id() {
  17. return business_id;
  18. }
  19. public void setBusiness_id(Integer business_id) {
  20. this.business_id = business_id;
  21. }
  22. public String getContract_name() {
  23. return contract_name;
  24. }
  25. public void setContract_name(String contract_name) {
  26. this.contract_name = contract_name;
  27. }
  28. public String getContract_party() {
  29. return contract_party;
  30. }
  31. public void setContract_party(String contract_party) {
  32. this.contract_party = contract_party;
  33. }
  34. public Integer getStatus_id() {
  35. return status_id;
  36. }
  37. public void setStatus_id(Integer status_id) {
  38. this.status_id = status_id;
  39. }
  40. public String getStatus_name() {
  41. return status_name;
  42. }
  43. public void setStatus_name(String status_name) {
  44. this.status_name = status_name;
  45. }
  46. public Long getUpdate_time() {
  47. return update_time;
  48. }
  49. public void setUpdate_time(Long update_time) {
  50. this.update_time = update_time;
  51. }
  52. }