DetailRequest2Str.cs 298 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.hj
  5. {
  6. public class DetailRequest2Str
  7. {
  8. public string Id { get; set; } = "0";
  9. }
  10. public class DetailListRequest2Str
  11. {
  12. public List<string> IdList { get; set; }
  13. }
  14. }