using System; namespace NFine.Domain.Entity.ProductManage { public class ICSProductEntity : IEntity, ICreationAudited, IDeleteAudited, IModificationAudited { public string F_Id { get; set; } public string ProductSN { get; set; } public string WhCode { get; set; } public decimal? Weight { get; set; } public decimal? GrossWeight { get; set; } public string Measurement { get; set; } public string Shape { get; set; } public string CertificateNo { get; set; } public decimal? Price { get; set; } public string Color { get; set; } public string Clarity { get; set; } public string Polish { get; set; } public string Symmetry { get; set; } public string Cut { get; set; } public string Other { get; set; } public decimal InvQty { get; set; } public string Location { get; set; } public bool? IsLock { 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; } } }