namespace yunneiWCS.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("roleVsModule")]
|
public partial class roleVsModule
|
{
|
public int id { get; set; }
|
|
public int? roleId { get; set; }
|
|
public int? moduleId { get; set; }
|
|
[StringLength(50)]
|
public string value { get; set; }
|
}
|
}
|