using System; using System.Collections.Generic; using System.Text; namespace WMS.Entity.SysEntity { public class SysRoleWareHouse:BaseEntity { public SysRoleWareHouse() { } /// /// 角色号 /// public string RoleNo { get; set; } /// /// 仓库号 /// public string WareHouseNo { get; set; } } }