package com.changhong.epc.bean.tenant.log;
|
|
import com.changhong.epc.bean.form.FormType;
|
import com.changhong.epc.constter.base.BaseBean;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.persistence.Column;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 预算回写log
|
* @ClassName: MasterValue
|
* @author [九鼎联合科技]
|
* @date 2017年08月28日 上午11:52:33
|
*/
|
@Table(name="epc_budget_log_{rule}")
|
@Data
|
@EqualsAndHashCode(callSuper=true)
|
public class BudgetLog extends BaseBean implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 预算id
|
* 表字段:budget_id
|
*/
|
@Column(name="budget_id")
|
private Integer budgetId;
|
|
/**
|
* 预算明细id
|
* 表字段:budget_child_id
|
*/
|
@Column(name="budget_child_id")
|
private Integer budgetChildId;
|
|
/**
|
* 变更类型
|
* 表字段:update_type
|
*/
|
@Column(name="update_type")
|
private BudgetUpdateType updateType;
|
|
/**
|
* 变更内容
|
* 表字段:update_text
|
*/
|
@Column(name="update_text")
|
private String updateText;
|
|
/**
|
* 原始内容
|
* 表字段:original_text
|
*/
|
@Column(name="original_text")
|
private String originalText;
|
|
/**
|
* 变更来源类型
|
* 表字段:update_source_type
|
*/
|
@Column(name="update_source_type")
|
private FormType updateSourceType;
|
|
/**
|
* 变更来源表单id
|
* 表字段:update_source_formid
|
*/
|
@Column(name="update_source_formid")
|
private String updateSourceFormid;
|
|
/**
|
* 变更来源id
|
* 表字段:update_source_id
|
*/
|
@Column(name="update_source_id")
|
private Integer updateSourceId;
|
|
/**
|
* 变更来源子id
|
* 表字段:update_source_child_id
|
*/
|
@Column(name="update_source_child_id")
|
private Integer updateSourceChildId;
|
|
/**
|
* 变更来源编号
|
* 表字段:update_source_number
|
*/
|
@Column(name="update_source_number")
|
private String updateSourceNumber;
|
|
/**
|
* 变更来源内容
|
* 表字段:update_source_text
|
*/
|
@Column(name="update_source_text")
|
private String updateSourceText;
|
|
/**
|
* 变更时间
|
* 表字段:update_date
|
*/
|
@Column(name="update_date")
|
private Date updateDate;
|
|
|
/**
|
* 关联变更来源表单id
|
* 表字段:join_source_formid
|
*/
|
@Column(name="join_source_formid")
|
private String joinSourceFormid;
|
|
/**
|
* 关联变更来源id
|
* 表字段:join_source_id
|
*/
|
@Column(name="join_source_id")
|
private Integer joinSourceId;
|
|
/**
|
* 关联变更来源编号
|
* 表字段:join_source_number
|
*/
|
@Column(name="join_source_number")
|
private String joinSourceNumber;
|
|
/**
|
* 关联变更来源内容
|
* 表字段:join_source_text
|
*/
|
@Column(name="join_source_text")
|
private String joinSourceText;
|
|
|
}
|