pub type FlagRespResult<T, E> = RespResult<FlagWrap<T>, E>;
enum FlagRespResult<T, E> { Success(FlagWrap<T>), Err(E), }
the respond is success with response body T
T
the respond is failure with response error E
E