using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Code.Dtos { /// /// 新建表单获取默认值必填项 /// public class FormSetCreateRes { /// /// 主键Id /// public long Id { get; set; } /// /// 权限Id /// public long? PermissionId { get; set; } /// /// 权限模块名称 /// public string PermissionName { get; set; } /// /// 模板名称 /// public string TemplateName { get; set; } /// /// 字段设置 /// public string Content { get; set; } } }