TG.WXCRM.V4/Model/Entity/BAS_GROUPLEADER.cs

31 lines
718 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_GROUPLEADER")]
public partial class BAS_GROUPLEADER
{
[Key]
[Column(Order = 0)]
public decimal INNERUSERID { get; set; }
[Key]
[Column(Order = 1)]
public decimal INNERGROUPID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public decimal? LEADERTYPE { get; set; }
public decimal? TYPE { get; set; }
}
}