锐腾搅拌上料功能
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.

30 lines
554 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity.NcApiEntity
  6. {
  7. public class NcApiOutArguments
  8. {
  9. public string flat { get; set; }
  10. public object list_info { get; set; }
  11. public string status { get; set; }
  12. public string m_isDirty { get; set; }
  13. }
  14. //{
  15. //"flat": "1",
  16. //"list_info": [
  17. // {
  18. // "code": "T23152114202_A01",
  19. // "pk_praybill_b": "1001A1100000005E141C"
  20. // }
  21. //],
  22. //"status": 0,
  23. //"m_isDirty": false
  24. //}
  25. }