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.
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
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; }
|
|
|
|
public string isUseSystem { get; set; }
|
|
public string isOperator { get; set; }
|
|
public string isSaleMan { get; set; }
|
|
public string isDriver { get; set; }
|
|
public string isCustomsDeclarer { get; set; }
|
|
public string isDocument { get; set; }
|
|
public string isFinancialStaff { get; set; }
|
|
public string isDisable { get; set; }
|
|
public string isCustomsService { get; set; }
|
|
public string isVehiclesDispatcher { get; set; }
|
|
}
|
|
} |