19 lines
515 B
C#
19 lines
515 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WEAPP_USERGROUP")]
|
|
public class WEAPP_USERGROUP
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal GROUPID { get; set; }
|
|
public decimal SALEUSEREID { get; set; }
|
|
public string OPENID { get; set; }
|
|
public string ACCOUNTNUM { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|