You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
using Dapper.Contrib.Extensions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 发料申请
|
|
/// </summary>
|
|
[Table("ICSMOApplyNeg")]
|
|
public class ICSMOApplyNeg
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 非自增主键
|
|
/// </summary>
|
|
[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<ICSMOApplyNegDetail> 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; }
|
|
}
|
|
}
|