RequestAgvEmptyBoxReqApi.cs 459 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ProjectManagementSystem.Common.Models
  7. {
  8. public class RequestAgvEmptyBoxReqApi
  9. {
  10. public string plant { get; set; } = "5205";
  11. public string location { get; set; }
  12. public string podTyp { get; set; }
  13. public string passTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  14. }
  15. }