package com.yeshi.fanli.entity.xinge;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
@Entity
|
@Table(name = "yeshi_ec_xinge_info")
|
public class XingeInfo {
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.AUTO)
|
@Column(name = "id")
|
private long id;
|
|
private int type; //1.安卓 2.IOS
|
|
@Column(name = "`key`")
|
private String key;
|
|
private String value;
|
|
public long getId() {
|
return id;
|
}
|
public void setId(long id) {
|
this.id = id;
|
}
|
public int getType() {
|
return type;
|
}
|
public void setType(int type) {
|
this.type = type;
|
}
|
public String getKey() {
|
return key;
|
}
|
public void setKey(String key) {
|
this.key = key;
|
}
|
public String getValue() {
|
return value;
|
}
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
|
}
|