package com.changhong.epc.bean.tenant.norm;
|
|
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;
|
|
/**
|
*
|
* @ClassName: SuppStander
|
* @author [九鼎联合科技]
|
* @date 2017年08月28日 上午10:27:11
|
*/
|
@Table(name="epc_supp_stander_{rule}")
|
@Data
|
@EqualsAndHashCode(callSuper=true)
|
public class SuppStander extends BaseBean implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 报销方式
|
* 表字段:name
|
*/
|
@Column(name="name")
|
private String name;
|
|
/**
|
* 费用类型mdCode
|
* 表字段:type
|
*/
|
@Column(name="type")
|
private String type;
|
|
/**
|
* 费用类型名称
|
*/
|
@Column(name = "type_name")
|
private String typeName;
|
|
/**
|
*
|
* 表字段:sub_type
|
*/
|
@Column(name="sub_type")
|
private Integer subType;
|
|
/**
|
*
|
* 表字段:rule
|
*/
|
@Column(name="rule")
|
private String rule;
|
|
/**
|
*
|
* 表字段:ct_id
|
*/
|
@Column(name="ct_id")
|
private Integer ctId;
|
|
public static SuppStander of(Integer ctId){
|
SuppStander suppStander = new SuppStander();
|
suppStander.setCtId(ctId);
|
return suppStander;
|
}
|
}
|