1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.dayu.recharge.dbBean;
|
| import androidx.room.Entity;
| import androidx.room.PrimaryKey;
|
| /**
| * Copyright (C), 2023,
| * Author: zuo
| * Date: 2023-11-08 21:26
| * Description: 配置水泵功率
| */
| @Entity
| public class PowerBean {
| @PrimaryKey(autoGenerate = true)
| public long id;
|
| public String power;//配置水泵功率
|
| public String getPower() {
| return power;
| }
|
| public void setPower(String power) {
| this.power = power;
| }
| }
|
|