using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
[Serializable]
public partial class T_Cus_Msg
{
///
/// F_ID,自增
///
public int F_ID { get; set; }
///
/// 类型:1为销售档案转移
///
public int F_Type { get; set; }
///
/// 会员档案id
///
public int F_VipInfoID { get; set; }
///
/// 档案接收人
///
public string F_ToPerson { get; set; }
///
/// 消息内容
///
public string F_Notice { get; set; }
///
/// 状态:0未读,1已读但未处理,2同意转移,3拒绝
///
public int F_State { get; set; }
///
///档案原负责人
///
public string F_NotifyPerson { get; set; }
///
/// 最近修改时间
///
public DateTime? F_LastModifyOn { get; set; }
///
/// 最近修改人
///
public string F_LastModifyBy { get; set; }
///
/// 添加时间
///
public DateTime? F_CreateOn { get; set; }
///
/// 添加工号
///
public string F_CreateBy { get; set; }
}
}