RequestAgvAndonRequestApi.cs 417 B

123456789101112131415
  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 RequestAgvAndonRequestApi
  9. {
  10. public string plant { get; set; } = "5205";
  11. public string buttonId { get; set; }
  12. public string passTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  13. }
  14. }