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.
|
|
using Dapper.Contrib.Extensions;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace NFine.Application.Models{ /// <summary>
/// 发料申请
/// </summary>
public class ICSMOApplyEdit: UniversalEditModel { public string ID { get; set; } public string ApplyCode { get; set; } public string Sequence { get; set; } public string SourceCode { get; set; } public string SourceSequence { get; set; } public string InvCode { get; set; } public decimal Quantity { get; set; } public decimal Amount { get; set; } public decimal IssueQuantity { get; set; } public string WHCode { get; set; } public string Type { get; set; } public string ApplyID { get; set; } public string ApplyDetailID { get; set; } public string ExtensionID { get; set; } public string MUSER { get; set; } public string MUSERName { get; set; } public DateTime MTIME { get; set; } public string WorkPoint { get; set; } public string EATTRIBUTE { get; set; } public string EATTRIBUTE2 { get; set; } public string EATTRIBUTE3 { get; set; } public string EATTRIBUTE4 { get; set; } public string EATTRIBUTE5 { get; set; } public string EATTRIBUTE6 { get; set; } public string EATTRIBUTE7 { get; set; } public string EATTRIBUTE8 { get; set; } public string EATTRIBUTE9 { get; set; } public string EATTRIBUTE10 { get; set; } }}
|