package com.dayu.general.bean.db
|
|
import androidx.room.Entity
|
import androidx.room.PrimaryKey
|
|
/**
|
* Description:项目选项
|
* Author: zuo
|
* Date: 2025/3/18
|
*/
|
@Entity
|
class ProjectDataBean {
|
@PrimaryKey(autoGenerate = true)
|
var projectId: Long? = 0
|
var projectName: String? = null
|
var projectType: Int? = null
|
var projectTag: String = ""
|
|
}
|