| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package com.happy.Model;
- public class Detail_elc {
- public Integer id;
- public String build;
- public String dom;
- public String pointid;
- public String dataTime;
- public double bm;
- public double use_elc;
- public double usable_elc;
- public double recharge_elc;
- public Integer use_state;
- public Integer usable_state;
- public Integer re_state;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getBuild() {
- return build;
- }
- public void setBuild(String build) {
- this.build = build;
- }
- public String getDom() {
- return dom;
- }
- public void setDom(String dom) {
- this.dom = dom;
- }
- public String getPointid() {
- return pointid;
- }
- public void setPointid(String pointid) {
- this.pointid = pointid;
- }
- public String getDataTime() {
- return dataTime;
- }
- public void setDataTime(String dataTime) {
- this.dataTime = dataTime;
- }
- public double getBm() {
- return bm;
- }
- public void setBm(double bm) {
- this.bm = bm;
- }
- public double getUse_elc() {
- return use_elc;
- }
- public void setUse_elc(double use_elc) {
- this.use_elc = use_elc;
- }
- public double getUsable_elc() {
- return usable_elc;
- }
- public void setUsable_elc(double usable_elc) {
- this.usable_elc = usable_elc;
- }
- public double getRecharge_elc() {
- return recharge_elc;
- }
- public void setRecharge_elc(double recharge_elc) {
- this.recharge_elc = recharge_elc;
- }
- public Integer getUse_state() {
- return use_state;
- }
- public void setUse_state(Integer use_state) {
- this.use_state = use_state;
- }
- public Integer getUsable_state() {
- return usable_state;
- }
- public void setUsable_state(Integer usable_state) {
- this.usable_state = usable_state;
- }
- public Integer getRe_state() {
- return re_state;
- }
- public void setRe_state(Integer re_state) {
- this.re_state = re_state;
- }
- }
|