using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWareSql
|
{
|
public class BatchMatGatherView
|
{
|
public string PlanNo { get; set; }
|
public int Qty { 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 DateTime? CreatTime { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
|
public string Remark { get; set; }
|
}
|
}
|