ruwebframe 0.1.2

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation
use std::any::Any;

struct PageRequest<Q> {

    Query: Q ,

    //每页记录数
    PageSize: i32,
    //当前页码
    PageCurrent: i32,
    //排序
    OrderBys : String,
    //
    Keyword : String,
}

impl<Q> PageRequest<Q> {
    pub fn new(Data: Q, PageSize: i32, PageCurrent: i32, OrderBys: String, Keyword: String) -> Self {
        Self { Query: Data, PageSize, PageCurrent, OrderBys, Keyword }
    }
}