using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //FeedbackInfo public class FeedbackInfo { /// /// id /// private int _id; public int id { get{ return _id; } set{ _id = value; } } /// /// 回复的消息 /// private string _replymsg; public string replyMsg { get{ return _replymsg; } set{ _replymsg = value; } } /// /// 回复人 /// private string _replyuser; public string replyUser { get{ return _replyuser; } set{ _replyuser = value; } } /// /// 回复人ID /// private string _replyuserid; public string replyUserID { get{ return _replyuserid; } set{ _replyuserid = value; } } /// /// 回复日期 /// private DateTime? _replydate; public DateTime? replyDate { get{ return _replydate; } set{ _replydate = value; } } /// /// 附件 /// private string _attachment; public string attachMent { get{ return _attachment; } set{ _attachment = value; } } /// /// 是否隐藏(0:否 1:是) /// private bool? _isdelete; public bool? isDelete { get{ return _isdelete; } set{ _isdelete = value; } } /// /// 父级ID /// private string _feedbackid; public string feedbackID { get{ return _feedbackid; } set{ _feedbackid = value; } } } }