| | |
| | | package com.yeshi.fanli.entity.push;
|
| | |
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * oppo推送
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_uid_devicetoken_oppo")
|
| | | public class DeviceTokenOPPO {
|
| | | @Column(name = "do_id")
|
| | | private Long id;
|
| | | @Column(name = "do_device_id")
|
| | | private Long deviceActiveId;// 设备活跃ID
|
| | | @Column(name = "do_register_id")
|
| | | private String registerId;
|
| | | @Column(name = "do_uid")
|
| | | private Long uid;
|
| | | @Column(name = "do_create_time")
|
| | | private Date createTime;
|
| | | @Column(name = "do_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public String getRegisterId() {
|
| | | return registerId;
|
| | | }
|
| | |
|
| | | public void setRegisterId(String registerId) {
|
| | | this.registerId = registerId;
|
| | | }
|
| | |
|
| | | public Long getUid() {
|
| | | return uid;
|
| | | }
|
| | |
|
| | | public void setUid(Long uid) {
|
| | | this.uid = uid;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public Date getUpdateTime() {
|
| | | return updateTime;
|
| | | }
|
| | |
|
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public Long getDeviceActiveId() {
|
| | | return deviceActiveId;
|
| | | }
|
| | |
|
| | | public void setDeviceActiveId(Long deviceActiveId) {
|
| | | this.deviceActiveId = deviceActiveId;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.push; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * oppo推送 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_uid_devicetoken_oppo") |
| | | public class DeviceTokenOPPO { |
| | | @Column(name = "do_id") |
| | | private Long id; |
| | | @Column(name = "do_device_id") |
| | | private Long deviceActiveId;// 设备活跃ID |
| | | @Column(name = "do_register_id") |
| | | private String registerId; |
| | | @Column(name = "do_uid") |
| | | private Long uid; |
| | | @Column(name = "do_create_time") |
| | | private Date createTime; |
| | | @Column(name = "do_update_time") |
| | | private Date updateTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getRegisterId() { |
| | | return registerId; |
| | | } |
| | | |
| | | public void setRegisterId(String registerId) { |
| | | this.registerId = registerId; |
| | | } |
| | | |
| | | public Long getUid() { |
| | | return uid; |
| | | } |
| | | |
| | | public void setUid(Long uid) { |
| | | this.uid = uid; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Date getUpdateTime() { |
| | | return updateTime; |
| | | } |
| | | |
| | | public void setUpdateTime(Date updateTime) { |
| | | this.updateTime = updateTime; |
| | | } |
| | | |
| | | public Long getDeviceActiveId() { |
| | | return deviceActiveId; |
| | | } |
| | | |
| | | public void setDeviceActiveId(Long deviceActiveId) { |
| | | this.deviceActiveId = deviceActiveId; |
| | | } |
| | | |
| | | } |