You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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