ruwebframe 0.1.6

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
use serde::{Deserialize, Serialize};
use crate::rubase::ruentity;
#[derive(Debug,Deserialize,Serialize,Clone)]
pub struct BuildStructDto {
    pub StructName: String,
    pub Path: String,
    pub IfSingle: bool,
    pub InitFilename: String,
    pub RustFilename: String,
}

impl ruentity::BaseEntity for BuildStructDto {}


impl BuildStructDto {
    pub fn new() -> Self {
        Self {
            StructName: String::new(),
            Path: String::new(),
            IfSingle: false,
            InitFilename: String::new(),
            RustFilename: String::new(),
        }
    }
}