package com.ruoyi.project.tr.method.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
|
/**
|
* 风险单元评价方法对象 tr_method
|
*
|
* @author wm
|
* @date 2020-05-05
|
*/
|
public class Method extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
@Excel(name = "id")
|
private Long methodId;
|
|
/** 方法名称 */
|
@Excel(name = "方法名称")
|
private String methodName;
|
|
/** 所属公司 */
|
@Excel(name = "所属公司")
|
private Long companyId;
|
|
public void setMethodId(Long methodId)
|
{
|
this.methodId = methodId;
|
}
|
|
public Long getMethodId()
|
{
|
return methodId;
|
}
|
public void setMethodName(String methodName)
|
{
|
this.methodName = methodName;
|
}
|
|
public String getMethodName()
|
{
|
return methodName;
|
}
|
public void setCompanyId(Long companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public Long getCompanyId()
|
{
|
return companyId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("methodId", getMethodId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("methodName", getMethodName())
|
.append("companyId", getCompanyId())
|
.toString();
|
}
|
}
|