ParameterResult.cs 454 B

123456789101112131415161718192021
  1. using NXWMS.DataAccess.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace NXWMS.Client.Model.AppModels.Result.SysSettings
  7. {
  8. /// <summary>
  9. /// 系统结果参数
  10. /// </summary>
  11. public class ParameterResult : SYS_PARAMETER
  12. {
  13. public string CreateName { get; set; }
  14. public string UpdateName { get; set; }
  15. public string UsedFlagName { get; set; }
  16. }
  17. }