package com.dayu.qiheonlinelibrary.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; } }