35 lines
795 B
Java
35 lines
795 B
Java
|
|
package com.wecom.robot.entity;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.time.LocalDateTime;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@TableName("kf_account")
|
||
|
|
public class KfAccount implements Serializable {
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
@TableId(value = "kf_id", type = IdType.INPUT)
|
||
|
|
private String kfId;
|
||
|
|
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
private String avatar;
|
||
|
|
|
||
|
|
private String status;
|
||
|
|
|
||
|
|
private String bindManualId;
|
||
|
|
|
||
|
|
private LocalDateTime createdAt;
|
||
|
|
|
||
|
|
private LocalDateTime updatedAt;
|
||
|
|
|
||
|
|
public static final String STATUS_ONLINE = "online";
|
||
|
|
public static final String STATUS_OFFLINE = "offline";
|
||
|
|
}
|