package com.changhong.epc.bean.tenant.cost.budgetlog;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Table;
|
|
import com.changhong.epc.constter.base.BaseBean;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
*
|
* @ClassName: MoneyExpendLog
|
* @author [九鼎联合科技]
|
* @date 2017年11月08日 下午02:51:51
|
*/
|
@Table(name="epc_money_expend_log")
|
@Data
|
@EqualsAndHashCode(callSuper=true)
|
public class MoneyExpendLog extends BaseBean implements Serializable, IBillCostLog {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 表单id
|
* 表字段:form_id
|
*/
|
@Column(name="form_id")
|
private String formId;
|
|
/**
|
* 表单数据id
|
* 表字段:row_id
|
*/
|
@Column(name="row_id")
|
private Integer rowId;
|
|
/**
|
* 变更其它表单id
|
* 表字段:q_form_id
|
*/
|
@Column(name="q_form_id")
|
private String qFormId;
|
|
/**
|
* 变更其它数据id
|
* 表字段:q_row_id
|
*/
|
@Column(name="q_row_id")
|
private Integer qRowId;
|
|
/**
|
* 操作信息
|
* 表字段:operator_msg
|
*/
|
@Column(name="operator_msg")
|
private String operatorMsg;
|
|
/**
|
* 变更的字段别名
|
* 表字段:alter_alias
|
*/
|
@Column(name="alter_alias")
|
private String alterAlias;
|
|
/**
|
* 变更的内容
|
* 表字段:alter_content_old
|
*/
|
@Column(name="alter_content_old")
|
private String alterContentOld;
|
|
/**
|
* 变更后的内容
|
* 表字段:alter_content_new
|
*/
|
@Column(name="alter_content_new")
|
private String alterContentNew;
|
|
}
|