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 System;
namespace NFine.Domain.Entity.ProductManage { public class ICSProductPreSellEntity : IEntity<ICSProductPreSellEntity>, ICreationAudited, IDeleteAudited, IModificationAudited { public string F_Id { get; set; } public string PreSellNo { get; set; } public string CustomerId { get; set; } public string CustomerName { get; set; } public bool IsConfirm { get; set; } public string ConfirmUserId { get; set; } public DateTime? ConfirmTime { get; set; } public string F_CreatorUserId { get; set; } public DateTime? F_CreatorTime { get; set; } public string F_LastModifyUserId { get; set; } public DateTime? F_LastModifyTime { get; set; } public bool? F_DeleteMark { get; set; } public string F_DeleteUserId { get; set; } public DateTime? F_DeleteTime { get; set; } public string EATTRIBUTE1 { get; set; } public string F_Location { get; set; } } }
|