ruwebframe 0.1.8

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");
    }
}