TBusDept.java 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.sooka.sponest.data.emergency.domain;
  2. import com.ruoyi.common.core.annotation.Excel;
  3. import com.ruoyi.common.core.web.domain.BaseEntity;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. /**
  7. * 业务部门对象 t_bus_dept
  8. *
  9. * @author ruoyi
  10. * @date 2022-11-15
  11. */
  12. public class TBusDept extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 部门主键 */
  16. @Excel(name = "部门主键")
  17. private String busDeptId;
  18. /** 日志ID */
  19. @Excel(name = "日志ID")
  20. private String busLogId;
  21. /** 部门ID */
  22. @Excel(name = "部门ID")
  23. private Long deptId;
  24. /** 用户ID */
  25. @Excel(name = "用户ID")
  26. private Long userId;
  27. /** 部门类型 */
  28. @Excel(name = "部门类型")
  29. private String deptType;
  30. public void setBusDeptId(String busDeptId)
  31. {
  32. this.busDeptId = busDeptId;
  33. }
  34. public String getBusDeptId()
  35. {
  36. return busDeptId;
  37. }
  38. public void setBusLogId(String busLogId)
  39. {
  40. this.busLogId = busLogId;
  41. }
  42. public String getBusLogId()
  43. {
  44. return busLogId;
  45. }
  46. public void setDeptId(Long deptId)
  47. {
  48. this.deptId = deptId;
  49. }
  50. public Long getDeptId()
  51. {
  52. return deptId;
  53. }
  54. public void setUserId(Long userId)
  55. {
  56. this.userId = userId;
  57. }
  58. public Long getUserId()
  59. {
  60. return userId;
  61. }
  62. public void setDeptType(String deptType)
  63. {
  64. this.deptType = deptType;
  65. }
  66. public String getDeptType()
  67. {
  68. return deptType;
  69. }
  70. @Override
  71. public String toString() {
  72. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  73. .append("busDeptId", getBusDeptId())
  74. .append("busLogId", getBusLogId())
  75. .append("deptId", getDeptId())
  76. .append("userId", getUserId())
  77. .append("createTime", getCreateTime())
  78. .append("deptType", getDeptType())
  79. .toString();
  80. }
  81. }