26 lines
585 B
C#
26 lines
585 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("BAS_INNERUSERGROUP")]
|
|
public partial class BAS_INNERUSERGROUP
|
|
{
|
|
[Key]
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public decimal? DEPTID { get; set; }
|
|
|
|
public decimal? GID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public decimal? UPDATEUSER { get; set; }
|
|
}
|
|
}
|