WfRoomApplicant.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.xjrsoft.module.room.entity;
  2. import com.baomidou.mybatisplus.annotation.FieldFill;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import io.swagger.annotations.ApiModel;
  8. import io.swagger.annotations.ApiModelProperty;
  9. import lombok.Data;
  10. import java.io.Serializable;
  11. import java.util.Date;
  12. /**
  13. * @title: 寝室申请
  14. * @Author dzx
  15. * @Date: 2024-01-02
  16. * @Version 1.0
  17. */
  18. @Data
  19. @TableName("wf_room_applicant")
  20. @ApiModel(value = "wf_room_applicant", description = "寝室申请")
  21. public class WfRoomApplicant implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 主键编号
  25. */
  26. @ApiModelProperty("主键编号")
  27. @TableId
  28. private Long id;
  29. /**
  30. * 创建人
  31. */
  32. @ApiModelProperty("创建人")
  33. @TableField(fill = FieldFill.INSERT)
  34. private Long createUserId;
  35. /**
  36. * 创建时间
  37. */
  38. @ApiModelProperty("创建时间")
  39. @TableField(fill = FieldFill.INSERT)
  40. private Date createDate;
  41. /**
  42. * 修改人
  43. */
  44. @ApiModelProperty("修改人")
  45. @TableField(fill = FieldFill.UPDATE)
  46. private Long modifyUserId;
  47. /**
  48. * 修改时间
  49. */
  50. @ApiModelProperty("修改时间")
  51. @TableField(fill = FieldFill.UPDATE)
  52. private Date modifyDate;
  53. /**
  54. * 删除标记
  55. */
  56. @ApiModelProperty("删除标记")
  57. @TableField(fill = FieldFill.INSERT)
  58. @TableLogic
  59. private Integer deleteMark;
  60. /**
  61. * 有效标志
  62. */
  63. @ApiModelProperty("有效标志")
  64. @TableField(fill = FieldFill.INSERT)
  65. private Integer enabledMark;
  66. /**
  67. * 序号
  68. */
  69. @ApiModelProperty("序号")
  70. private Integer sortCode;
  71. /**
  72. * 申请人
  73. */
  74. @ApiModelProperty("申请人")
  75. private Long applicantUserId;
  76. /**
  77. * 班主任用户编号
  78. */
  79. @ApiModelProperty("班主任用户编号")
  80. private Long headTeacherId;
  81. /**
  82. * 寝室申请类型(xjr_dictionary_item[room_applicant_type])
  83. */
  84. @ApiModelProperty("寝室申请类型(xjr_dictionary_item[room_applicant_type])")
  85. private String recedeType;
  86. /**
  87. * 班级名称
  88. */
  89. @ApiModelProperty("班级名称")
  90. private String className;
  91. /**
  92. * 寝室+床位名称
  93. */
  94. @ApiModelProperty("寝室+床位名称")
  95. private String roomBedNumber;
  96. /**
  97. * 开始时间
  98. */
  99. @ApiModelProperty("开始时间")
  100. private Date startTime;
  101. /**
  102. * 离宿事由(xjr_dictionary_item[nos_reason])
  103. */
  104. @ApiModelProperty("离宿事由(xjr_dictionary_item[nos_reason])")
  105. private String nosReason;
  106. /**
  107. * 备注
  108. */
  109. @ApiModelProperty("备注")
  110. private String remark;
  111. /**
  112. * 状态(1:结束 0:未结束)
  113. */
  114. @ApiModelProperty("状态(1:结束 0:未结束)")
  115. private Integer status;
  116. }