ruwebframe 0.1.8

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
use serde::{Deserialize, Serialize};
use crate::rubase::ruentity;

#[derive(Debug, Clone,Default, Serialize, Deserialize)]
pub struct UserDao {}

impl UserDao {
    pub fn new() -> Self {
        Self {}
    }
    
    pub fn execute(&self) -> String {
        "select * from users".to_string()
    }
}
//pub mod susingle_init; 
// pub use rusingle_init::*;
impl ruentity::BaseEntitySingle for UserDao {
     
}