Skip to main content

mycommon_utils/constant/
mod.rs

1
2//定义常量status,只有1和0
3pub const STATUS_ENABLE: i8 = 1;
4pub const STATUS_DISABLE: i8 = 0;
5//定义常量del_flag,只有1和0,1表示删除,0表示未删除
6pub const DEL_FLAG_DELETE: i8 = 1;
7pub const DEL_FLAG_NORMAL: i8 = 0;
8
9
10
11