You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.glxp.api.entity.sup;
|
|
|
|
|
|
|
|
|
|
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 java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "user_company_config")
|
|
|
|
|
public class UserCompanyConfigEntity implements Serializable {
|
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业ID
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "companyId")
|
|
|
|
|
private Long companyId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 心跳频率(秒)
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "heartRate")
|
|
|
|
|
private Integer heartRate;
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
}
|