1
2
3
4
/// 生成uuid
pub fn uuid() -> String {
    return uuid::Uuid::new_v4().to_string();
}