package com.ycl.entity.equipment;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
|
/**
|
* 手持终端
|
*
|
* @version V1.0
|
* @author: AI
|
* @date: 2022-10-31 14:55
|
**/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_equipment_handheld_terminal")
|
public class HandheldTerminal implements Serializable {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 名称
|
*/
|
@TableField("name")
|
private String name;
|
|
/**
|
* 编号
|
*/
|
@TableField("code")
|
private String code;
|
|
/**
|
* 使用人
|
*/
|
@TableField("user")
|
private String user;
|
|
/**
|
* 联系方式
|
*/
|
@TableField("phone")
|
private String phone;
|
|
/**
|
* 部门id
|
*/
|
@TableField("depart_id")
|
private Long departId;
|
|
/**
|
* 状态1在线0离线
|
*/
|
@TableField("state")
|
private Short state;
|
|
/**
|
* 创建时间
|
*/
|
@TableField("create_time")
|
private LocalDateTime createTime;
|
}
|