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.

30 lines
872 B
C#

11 months ago
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class UserRefModel
{
public string GID { get; set; }
public string UserCode { get; set; }
public string UserName { get; set; }
public string CodeAndName { get; set; }
public string CORPID { get; set; }
public string DEPTGID { get; set; }
public string DEPTNAME { get; set; }
}
public class UserLinkRefModel
{
public string GID { get; set; }
public string UserCode { get; set; }
public string UserName { get; set; }
public string CodeAndName { get; set; }
public string Tel { get; set; }
public string Fax { get; set; }
public string Email { get; set; }
public string DEPTNAME { get; set; }
public string CORPID { get; set; }
}
}