更新 DeviceInfoDAO.java
parent
6609c2eb4d
commit
75c58c5379
|
|
@ -1,11 +1,14 @@
|
|||
package com.kimgo.wepush.model;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("device_info")
|
||||
public class DeviceInfoDAO {
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private long timeOutPeriod;
|
||||
private String androidId;
|
||||
|
|
|
|||
Loading…
Reference in New Issue