RegionResult.cs 435 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.Base
  7. {
  8. /// <summary>
  9. /// 库区结果
  10. /// </summary>
  11. public class RegionResult : BAS_REGION
  12. {
  13. public string CreateName { get; set; }
  14. public string UpdateName { get; set; }
  15. public string UsedFlagName { get; set; }
  16. }
  17. }