56 lines
1.0 KiB
Java
56 lines
1.0 KiB
Java
package com.cmobile.unifiedtms.entity.misc;
|
|
|
|
import javax.annotation.Generated;
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
@Generated("jsonschema2pojo")
|
|
public class CellInfo {
|
|
|
|
@SerializedName("name")
|
|
@Expose
|
|
private String name;
|
|
@SerializedName("cid")
|
|
@Expose
|
|
private String cid;
|
|
@SerializedName("type")
|
|
@Expose
|
|
private String type;
|
|
@SerializedName("strength")
|
|
@Expose
|
|
private Integer strength;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getCid() {
|
|
return cid;
|
|
}
|
|
|
|
public void setCid(String cid) {
|
|
this.cid = cid;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public Integer getStrength() {
|
|
return strength;
|
|
}
|
|
|
|
public void setStrength(Integer strength) {
|
|
this.strength = strength;
|
|
}
|
|
|
|
}
|