ruwebframe 0.1.10

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

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

impl BaseEntity for DbDao {}
impl DbDao {
    pub fn test(&self) -> String {
        println!("Test DBDao");
        "test".to_string()

    }
    pub fn doSome(&self)  {
        println!("new DBDao::do");
    }

    pub fn init(&self) {
        println!("init DBDao");
        rulog::info("init DBDao");
    }
}