You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
862 B
C#
37 lines
862 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 新建表单获取默认值必填项
|
|
/// </summary>
|
|
public class FormSetCreateRes
|
|
{
|
|
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 权限Id
|
|
/// </summary>
|
|
public long? PermissionId { get; set; }
|
|
/// <summary>
|
|
/// 权限模块名称
|
|
/// </summary>
|
|
public string PermissionName { get; set; }
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
public string TemplateName { get; set; }
|
|
/// <summary>
|
|
/// 字段设置
|
|
/// </summary>
|
|
public string Content { get; set; }
|
|
}
|
|
}
|