29 lines
673 B
C#
29 lines
673 B
C#
namespace CRM.Core.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("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; }
|
|
}
|
|
}
|