mycommon-utils 0.2.1

Common utilities library for database operations, Redis caching and system utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11

//定义常量status,只有1和0
pub const STATUS_ENABLE: i8 = 1;
pub const STATUS_DISABLE: i8 = 0;
//定义常量del_flag,只有1和0,1表示删除,0表示未删除
pub const DEL_FLAG_DELETE: i8 = 1;
pub const DEL_FLAG_NORMAL: i8 = 0;