19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.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; }
|
|
}
|
|
}
|