23 lines
911 B
23 lines
911 B
using System;
|
|
|
|
namespace NFine.Domain.Entity.ProductManage
|
|
{
|
|
public class ICSProductPreSellDetailEntity : IEntity<ICSProductPreSellDetailEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
|
|
{
|
|
public string F_Id { get; set; }
|
|
public string PreSell_Id { get; set; }
|
|
public string Product_Id { get; set; }
|
|
public string Product_SN { get; set; }
|
|
public DateTime PreSellTime { get; set; }
|
|
public int Status { 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; }
|
|
|
|
}
|
|
}
|