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.
DS7/DSWeb/Areas/MvcShipping/DB/VUser.cs

22 lines
661 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.MvcShipping.DB
{
public class VUser
{
public string userid { get; set; }
public string CODENAME { get; set; }
public string SHOWNAME { get; set; }
public string COMPANYID { get; set; }
public string companyname { get; set; }
public string deptgid { get; set; }
public string DEPTNAME { get; set; }
public string DEPTNO { get; set; }
public string email1 { get; set; }
public string mailsign { get; set; }
public string WeChatAccount { get; set; }
}
}