ruwebframe 0.1.4

a simple webframe for rust actix-web, based on rudi and rbatis.
Documentation

#[derive(Debug, Default, Clone)]
struct PageRequest<Q> {

    Query: Q ,

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

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