package com.ruoyi.project.tr.methodCriterion.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_criterion
|
*
|
* @author wm
|
* @date 2020-05-05
|
*/
|
public class MethodCriterion extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
@Excel(name = "id")
|
private Long criterionId;
|
|
/** 准则名称 */
|
@Excel(name = "准则名称")
|
private String criterionName;
|
|
/** 所属公司 */
|
@Excel(name = "所属公司")
|
private Long companyId;
|
|
/** 所属方法 */
|
@Excel(name = "所属方法")
|
private Long methodId;
|
|
public void setCriterionId(Long criterionId)
|
{
|
this.criterionId = criterionId;
|
}
|
|
public Long getCriterionId()
|
{
|
return criterionId;
|
}
|
public void setCriterionName(String criterionName)
|
{
|
this.criterionName = criterionName;
|
}
|
|
public String getCriterionName()
|
{
|
return criterionName;
|
}
|
public void setCompanyId(Long companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public Long getCompanyId()
|
{
|
return companyId;
|
}
|
public void setMethodId(Long methodId)
|
{
|
this.methodId = methodId;
|
}
|
|
public Long getMethodId()
|
{
|
return methodId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("criterionId", getCriterionId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("criterionName", getCriterionName())
|
.append("companyId", getCompanyId())
|
.append("methodId", getMethodId())
|
.toString();
|
}
|
}
|