ruwebframe 0.1.1

A brief description of your crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::rubase::ruentity;
use crate::rulog::rulog;

pub struct DbMulti {}

impl ruentity::BaseEntity  for DbMulti {
    
}
impl DbMulti {
    pub fn new() -> Self {
        DbMulti {}
    }
    pub fn execute(&self) -> String  {
        rulog::info("RuMulti execute 123");
        String::from("1233333333")
    }
}