|
@@ -0,0 +1,61 @@
|
|
|
+package com.qmth.teachcloud.common.entity;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.teachcloud.common.base.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 用户推送轨迹表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wangliang
|
|
|
+ * @since 2021-11-04
|
|
|
+ */
|
|
|
+@ApiModel(value = "PushUserTrack对象", description = "用户推送轨迹表")
|
|
|
+public class PushUserTrack extends BaseEntity implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "用户id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long userId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "身份 SpecialPrivilegeEnum: SUBJECT_HEADER('科组长权限','SubjectHeader','S_', 4), MARKER('评卷员权限','Marker','M_', 5),")
|
|
|
+ private String identify;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "操作 UserPushTrackEnum: BIND('绑定') UNBIND('解绑') ")
|
|
|
+ private String operate;
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIdentify() {
|
|
|
+ return identify;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdentify(String identify) {
|
|
|
+ this.identify = identify;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOperate() {
|
|
|
+ return operate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperate(String operate) {
|
|
|
+ this.operate = operate;
|
|
|
+ }
|
|
|
+}
|