using System; using System.Collections.Generic; using System.Text; namespace System.Model { [Serializable] public class T_Cus_VipLabelInfo { /// /// ID,自增 /// public int F_ID { get; set; } /// /// 标签名 /// public string F_Name { get; set; } /// /// 类型 /// public string F_Type { get; set; } /// /// 分类 /// public string F_Kind { get; set; } /// /// 备注 /// public string F_Note { get; set; } /// /// 标签颜色 /// public string F_LabelColor { get; set; } /// /// 字体颜色 /// public string F_FontColor { get; set; } /// /// 状态 /// public int F_State { get; set; } /// /// 添加时间 /// public DateTime? F_CreateOn { get; set; } /// /// 添加工号 /// public string F_CreateBy { get; set; } /// /// 删除时间 /// public DateTime? F_DeleteOn { get; set; } /// /// 删除工号 /// public string F_DeleteBy { get; set; } } }