52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using Api.Framework.Enums;
|
|
using Api.Framework.SDK;
|
|
using System.Windows.Forms;
|
|
|
|
namespace FLSystem.Forms
|
|
{
|
|
public partial class private_pid_manage : UserControl
|
|
{
|
|
|
|
public class view_private_pid
|
|
{
|
|
public long id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string username { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户昵称
|
|
/// </summary>
|
|
|
|
public string usernick { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型
|
|
/// </summary>
|
|
|
|
public ChatType robot_type { get; set; }
|
|
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public string pid_id { get; set; }
|
|
public string pid_name { get; set; }
|
|
public string cps_name { get; set; }
|
|
|
|
public CpsType cps_type { get; set; }
|
|
}
|
|
|
|
public private_pid_manage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e)
|
|
{
|
|
if (e.Info.IsRowIndicator && e.RowHandle >= 0) e.Info.DisplayText = (e.RowHandle + 1).ToString();
|
|
}
|
|
}
|
|
}
|