use crate::rubase::BaseEntity;
use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize,Clone, Default, Serialize)]
#[allow(dead_code)]
pub struct DBDao {}
impl BaseEntity for DBDao {}
impl DBDao {
pub fn test(&self) -> String {
"test".to_string()
}
pub fn doSome(&self) {
println!("new DBDao::do");
}
}