星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ResultVo.cs 191B

1234567891011
  1. namespace XHWK.WKTool.DAL
  2. {
  3. internal class ResultVo<T>
  4. {
  5. public int code { get; set; }
  6. public string msg { get; set; }
  7. public T obj { get; set; }
  8. }
  9. }