using System; namespace TsSFCDeivceClient.Model.Common { public class FieldsInfo { /// /// /// public int AutoID { get; set; } /// /// /// 默认值: (newid()) /// public Guid GUID { get; set; } /// /// /// public string FieldCode { get; set; } /// /// /// public string FieldText { get; set; } /// /// /// public string FieldValue { get; set; } /// /// /// public string FieldType { get; set; } public string FieldTypeCaption { get; set; } /// /// /// 默认值: ((1)) /// public bool Status { get; set; } public string StatusText { get; set; } /// /// /// public string Description { get; set; } /// /// /// public int CreatBy { get; set; } public string CreatorName { get; set; } /// /// /// public DateTime CreatOn { get; set; } /// /// /// public int? ModifyBy { get; set; } public string ModifierName { get; set; } /// /// /// public DateTime? ModifyOn { get; set; } } }