mirror of
https://github.com/suyiiyii/SIMS.git
synced 2025-06-05 13:36:12 +08:00
32 lines
676 B
Java
32 lines
676 B
Java
package top.suyiiyii.sims.entity;
|
|
|
|
import com.tangzc.mpe.autotable.annotation.Table;
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* @Author tortoise
|
|
* @Date 2024/8/10 0:31
|
|
* @PackageName:top.suyiiyii.sims.entity
|
|
* @ClassName: RevokeRequest
|
|
* @Description: 存储普通成员提出的奖惩撤销申请,并跟踪申请状态
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@Table
|
|
public class RevokeRequest {
|
|
|
|
private Integer id;
|
|
private Integer recordId;
|
|
private Integer userId;
|
|
private String reason;
|
|
private LocalDateTime requestTime;
|
|
private String status;
|
|
//处理时间
|
|
private LocalDateTime handleTime;
|
|
private String adminRemark;
|
|
|
|
}
|
|
|