using Dapper.Contrib.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NFine.Application.Entity
{
///
/// 发料申请
///
[Table("ICSMOApplyNeg")]
public class ICSMOApplyNeg
{
///
/// 非自增主键
///
[ExplicitKey]
public string ID { get; set; }
public string WHCode { get; set; }
public string User { get; set; }
public DateTime MTIME { get; set; }
public string WorkPoint { get; set; }
public string Memo { get; set; }
public string Type { get; set; }
public List Detail { get; set; }
}
public class ICSMOApplyNegDetail
{
public int Sequence { get; set; }
public string InvCode { get; set; }
public string Quantity { get; set; }
public string Amount { get; set; }
public string SourceDetailID { get; set; }
public string ExtensionID { get; set; }
}
}