package consts // 状态枚举 const ( StatusNormal = 1 // 正常 StatusDisabled = 2 // 禁用 StatusAbnormal = 3 // 异常 StatusDelete = 4 // 删除 )