DecodeIDsInStruct 手动解码结构体中的ID字段(用于特殊情况)
(data interface{})
| 237 | |
| 238 | // DecodeIDsInStruct 手动解码结构体中的ID字段(用于特殊情况) |
| 239 | func DecodeIDsInStruct(data interface{}) interface{} { |
| 240 | return decodeRequestIDs(data) |
| 241 | } |
| 242 | |
| 243 | // BatchDecodeIDStrings 批量解码ID字符串数组 |
| 244 | func BatchDecodeIDStrings(encodedIDs []string) ([]int64, error) { |
nothing calls this directly
no test coverage detected