29 lines
688 B
C#
29 lines
688 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_INNERUSERROLE")]
|
|
public partial class BAS_INNERUSERROLE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal ROLEID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public decimal? UPDATEUSER { get; set; }
|
|
|
|
public virtual BAS_INNERUSER BAS_INNERUSER { get; set; }
|
|
}
|
|
}
|