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.
25 lines
780 B
C#
25 lines
780 B
C#
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
|
|
}
|
|
} |