package com.ruoyi.system.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; /** * 考察配置与考察主关联对象 investigate_disposition_table * * @author ruoyi * @date 2023-10-10 */ public class InvestigateDispositionTable extends BaseEntity { private static final long serialVersionUID = 1L; /** 考察主表id */ private Long investigateTableId; /** 考察配置表id */ private Long investigateDispositionId; public void setInvestigateTableId(Long investigateTableId) { this.investigateTableId = investigateTableId; } public Long getInvestigateTableId() { return investigateTableId; } public void setInvestigateDispositionId(Long investigateDispositionId) { this.investigateDispositionId = investigateDispositionId; } public Long getInvestigateDispositionId() { return investigateDispositionId; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("investigateTableId", getInvestigateTableId()) .append("investigateDispositionId", getInvestigateDispositionId()) .toString(); } }