123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package com.fuzamei.entity;
- public class ContractStatusTracking {
- private Integer id; //主键id
- private Integer business_id; //合同对应的业务id号
- private String contract_name; //合同名称
- private String contract_party; //签约方
- private Long update_time; //更新时间
- private Integer status_id; //状态id号
- private String status_name; //状态名
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getBusiness_id() {
- return business_id;
- }
- public void setBusiness_id(Integer business_id) {
- this.business_id = business_id;
- }
- public String getContract_name() {
- return contract_name;
- }
- public void setContract_name(String contract_name) {
- this.contract_name = contract_name;
- }
- public String getContract_party() {
- return contract_party;
- }
- public void setContract_party(String contract_party) {
- this.contract_party = contract_party;
- }
- public Integer getStatus_id() {
- return status_id;
- }
- public void setStatus_id(Integer status_id) {
- this.status_id = status_id;
- }
- public String getStatus_name() {
- return status_name;
- }
- public void setStatus_name(String status_name) {
- this.status_name = status_name;
- }
- public Long getUpdate_time() {
- return update_time;
- }
- public void setUpdate_time(Long update_time) {
- this.update_time = update_time;
- }
-
- }
|