123456789101112131415161718192021 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.SysSettings
- {
- /// <summary>
- /// 系统结果参数
- /// </summary>
- public class ParameterResult : SYS_PARAMETER
- {
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|