using System; using System.Collections.Generic; using System.Text; namespace System.Model { [Serializable] public partial class T_Cus_ScoreSet { /// /// F_ID /// public int F_ID { get; set; } /// /// 是否启用积分:1启用0关闭 /// public int F_Start { get; set; } /// /// 积分获取比例 /// public int F_GetPercent { get; set; } /// /// 积分获取时间 /// public int F_GetDay { get; set; } /// /// 是否开启积分抵扣:0启用1关闭 /// public int F_StartDebit { get; set; } /// /// 积分抵扣比例 /// public int F_DebitPercent { get; set; } /// /// 状态0禁用 1启用 2删除 /// public int F_State { get; set; } /// /// 删除时间 /// public DateTime F_DeleteOn { get; set; } /// /// 删除人 /// public string F_DeleteBy { get; set; } /// /// 添加时间 /// public DateTime? F_CreateOn { get; set; } /// /// 添加工号 /// public string F_CreateBy { get; set; } } }