12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.OFILM
- {
- public class OutPutData
- {
- public string Factory { get; set; }
- public string Plant { get; set; }
- public string Floor { get; set; }
- public string FCode { get; set; }
- public string ProcessCode { get; set; }
- public string Recipe { get; set; }
- public int FCount { get; set; }
- public DateTime SDate { get; set; }
- public DateTime EDate { get; set; }
- }
- }
|