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.
31 lines
1.2 KiB
31 lines
1.2 KiB
using System;
|
|
|
|
namespace NFine.Domain.Entity.SystemManage
|
|
{
|
|
public class ItemsDetailEntity : IEntity<ItemsDetailEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
|
|
{
|
|
public string F_Id { get; set; }
|
|
public string F_ItemId { get; set; }
|
|
public string F_ParentId { get; set; }
|
|
public string F_ItemCode { get; set; }
|
|
public string F_ItemName { get; set; }
|
|
public string F_SimpleSpelling { get; set; }
|
|
public bool? F_IsDefault { get; set; }
|
|
public int? F_Layers { get; set; }
|
|
public int? F_SortCode { get; set; }
|
|
public bool? F_DeleteMark { get; set; }
|
|
public bool? F_EnabledMark { get; set; }
|
|
public string F_Description { get; set; }
|
|
public DateTime? F_CreatorTime { get; set; }
|
|
public string F_CreatorUserId { get; set; }
|
|
public DateTime? F_LastModifyTime { get; set; }
|
|
public string F_LastModifyUserId { get; set; }
|
|
public DateTime? F_DeleteTime { get; set; }
|
|
public string F_DeleteUserId { get; set; }
|
|
public string F_Define1 { get; set; }
|
|
public string F_Define2 { get; set; }
|
|
public string F_Define3 { get; set; }
|
|
public string F_Define4 { get; set; }
|
|
|
|
}
|
|
}
|