左晓为主开发手持机充值管理机
zuoxiao
2024-04-25 8d53327d1b3df1aea5f9eb9fa22c644ccfeeabf1
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.qihealonelibrary.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;
    }
}