55 lines
1.2 KiB
C#
55 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.WebHelper.UtilityModel
|
|
{
|
|
public class UserResourceCount
|
|
{
|
|
public decimal SalesId { get; set; }
|
|
public List<string> PKIDS
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public int Count
|
|
{
|
|
get
|
|
{
|
|
if (PKIDS == null)
|
|
return 0;
|
|
return PKIDS.Count;
|
|
}
|
|
}
|
|
public void Remove(string pkid)
|
|
{
|
|
if (PKIDS != null)
|
|
PKIDS.Remove(pkid);
|
|
}
|
|
public void Add(String pkid)
|
|
{
|
|
if (PKIDS == null)
|
|
PKIDS = new List<string>();
|
|
PKIDS.Add(pkid);
|
|
}
|
|
}
|
|
public class UnlineMsg
|
|
{
|
|
public string message { get; set; }
|
|
public decimal userid { get; set; }
|
|
}
|
|
public class WxIllegMsg
|
|
{
|
|
public string message { get; set; }
|
|
public decimal userid { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
}
|
|
|
|
public class ResRecycleMsg
|
|
{
|
|
public string message { get; set; }
|
|
public decimal userid { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
}
|
|
|
|
}
|