ComplianceServer/oldcode/Model/Entity/BAS_INNERUSERGROUP.cs

33 lines
860 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.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; }
public decimal? COMPANYID { get; set; }
public virtual BAS_INNERDEPARTMENT BAS_INNERDEPARTMENT { get; set; }
//public virtual BAS_INNERGROUP BAS_INNERGROUP { get; set; }
public virtual BAS_INNERUSER BAS_INNERUSER { get; set; }
}
}