using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWareSql
|
{
|
public class BatchMatView
|
{
|
public int ID { get; set; }
|
|
public string PlanNo { get; set; }
|
|
|
public string MatID { get; set; }
|
|
|
public string MatName { get; set; }
|
|
public float Leng { get; set; }
|
|
public float Width { get; set; }
|
|
public float Thk { get; set; }
|
|
public int MaterialIndex { get; set; }
|
|
public int MatStackNo { get; set; }
|
|
public string IsAuto { get; set; }
|
|
public long BatchSequence { get; set; }
|
|
public int Status { get; set; }
|
|
public string StatusName { get; set; }
|
|
|
public int StackSequence { get; set; }
|
|
public string IsDone { get; set; }
|
|
public int? SerialNo { get; set; }
|
|
public int? PlanNoQuantity { get; set; }
|
|
public DateTime? CreatTime { get; set; }
|
|
public DateTime? DoneTime { get; set; }
|
|
public string MatGrid { get; set; }
|
}
|
}
|