using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Code.Dtos { /// /// 用户数据权限应用请求 /// public class UserDataRuleScopeApplyReq { /// /// 数据权限Id /// public long RuleId { get; set; } /// /// 用户Id /// public long UserId { get; set; } } }