namespace iWareSql.Orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Mes_BatchMat_Param
|
{
|
public int ID { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string PlanNo { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string MatID { get; set; }
|
|
[Required]
|
[StringLength(100)]
|
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 StackNo { get; set; }
|
|
public float IsAuto { get; set; }
|
|
public long BatchSequence { get; set; }
|
|
public int Status { get; set; }
|
|
[StringLength(100)]
|
public string Backup1 { get; set; }
|
|
[StringLength(100)]
|
public string Backup2 { get; set; }
|
|
[StringLength(100)]
|
public string Backup3 { get; set; }
|
|
[StringLength(100)]
|
public string Backup4 { get; set; }
|
public int StackSequence { get; set; }
|
|
public int? IsDone { get; set; }
|
|
public int? SerialNo { get; set; }
|
|
public int? PlanNoQuantity { get; set; }
|
|
public DateTime? CreatTime { get; set; }
|
|
public DateTime? DoneTime { get; set; }
|
|
[StringLength(50)]
|
public string MatGrid { get; set; }
|
|
[StringLength(50)]
|
public string Color { get; set; }
|
|
public int? IsRealesed { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
[StringLength(128)]
|
public string LastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
|
[StringLength(1000)]
|
public string Remark { get; set; }
|
|
//public int? BatchSequenceIndex { get; set; }
|
}
|
}
|