20 lines
514 B
C#
20 lines
514 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WEAPP_GROUP")]
|
|
public class WEAPP_GROUP
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string GROUPNAME { get; set; }
|
|
public decimal GROUPTYPE { get; set; }
|
|
public decimal? SALEUSEREID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string ACCOUNTNUM { get; set; }
|
|
|
|
}
|
|
}
|