InvestigateDispositionTable.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.ruoyi.system.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 考察配置与考察主关联对象 investigate_disposition_table
  8. *
  9. * @author ruoyi
  10. * @date 2023-10-10
  11. */
  12. public class InvestigateDispositionTable extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 考察主表id */
  16. private Long investigateTableId;
  17. /** 考察配置表id */
  18. private Long investigateDispositionId;
  19. public void setInvestigateTableId(Long investigateTableId)
  20. {
  21. this.investigateTableId = investigateTableId;
  22. }
  23. public Long getInvestigateTableId()
  24. {
  25. return investigateTableId;
  26. }
  27. public void setInvestigateDispositionId(Long investigateDispositionId)
  28. {
  29. this.investigateDispositionId = investigateDispositionId;
  30. }
  31. public Long getInvestigateDispositionId()
  32. {
  33. return investigateDispositionId;
  34. }
  35. @Override
  36. public String toString() {
  37. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  38. .append("investigateTableId", getInvestigateTableId())
  39. .append("investigateDispositionId", getInvestigateDispositionId())
  40. .toString();
  41. }
  42. }