17 lines
406 B
C#
17 lines
406 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("aq_Bas_Role_Com")]
|
|
public class Bas_Role_Com
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int roleid { get; set; }
|
|
public string companycode { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
}
|
|
}
|