package com.dayu.rechargeqh.dbBean;
|
|
import androidx.room.Entity;
|
import androidx.room.PrimaryKey;
|
|
/**
|
* author: zuo
|
* Date: 2024-03-07
|
* Time: 12:05
|
* 备注:
|
*/
|
@Entity
|
public class RegionBean {
|
@PrimaryKey(autoGenerate = true)
|
public long id;
|
|
public String region;//区域地址
|
|
public String controllerCodel;//控制器编号(低前高后) 本区域内控制器编号
|
|
|
public String getRegion() {
|
return region;
|
}
|
|
public void setRegion(String region) {
|
this.region = region;
|
}
|
|
public String getControllerCodel() {
|
return controllerCodel;
|
}
|
|
public void setControllerCodel(String controllerCodel) {
|
this.controllerCodel = controllerCodel;
|
}
|
}
|