123456789101112131415161718192021222324 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LogoForceTestApp.Modules.MainModule.Models
- {
- public class InformationNew : BindableBase
- {
- public Guid Id { get; set; }
- public DateTime CreateTime { get; set; }
- public string OperatorCode { get; set; }
- public string ProCode { get; set; }
- public double SpendTime { get; set; }
- public string ProType { get; set; }
- public string ProNo { get; set; }
- public string ItemCode { get; set; }
- public string OrderNo { get; set; }
- public string TestResult { get; set; }
- public string WorkDev { get; set; }
- }
- }
|