using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.SoftMng.DB { [Table("WS_USER")] public class WS_USER { [Key] public string GID { get; set; } public string NAME { get; set; } public string COMPANY_NAME { get; set; } public string MOBILE { get; set; } public string CUST_NAME { get; set; } public string CUST_JSON { get; set; } public DateTime CREATE_TIME { get; set; } public string REMARK { get; set; } public string OPENID { get; set; } //小程序openid public string OPENID2 { get; set; } //服务号openid } }