创建 DeviceInfoDAO.java
parent
b86f94e1dd
commit
7d4ee71add
|
|
@ -0,0 +1,16 @@
|
|||
package com.kimgo.wepush.model;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("device_info")
|
||||
public class DeviceInfoDAO {
|
||||
private Integer id;
|
||||
private long timeOutPeriod;
|
||||
private String androidId;
|
||||
private String serialNumber;
|
||||
private String deviceModel;
|
||||
private long lastOnlineTime;
|
||||
private int status;
|
||||
}
|
||||
Loading…
Reference in New Issue