TOOL_STORE_INFO.cs 823 B

1234567891011121314151617181920212223242526272829303132
  1. using FocasCncCollect.Models.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace FocasCncCollect.TMS.Models
  8. {
  9. public partial class TOOL_STORE_INFO
  10. {
  11. public string ID { get; set; }
  12. public string EQUIPMENT_ID { get; set; }
  13. public string STORE_NAME { get; set; }
  14. public string STORE_CODE { get; set; }
  15. public StoreType STORE_TYPE { get; set; }
  16. public YesOrNo IS_USING { get; set; }
  17. public bool ISVALID { get; set; }
  18. public int SEAT_COUNT { get; set; }
  19. public Nullable<System.DateTime> CREATE_TIME { get; set; }
  20. public string CREATER { get; set; }
  21. public int AVAILABLE_COUNT { get; set; }
  22. public string REMARK { get; set; }
  23. }
  24. }