1234567891011121314151617181920212223 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Base
- {
- /// <summary>
- /// 单位
- /// </summary>
- public class UnitResult : BAS_UNIT
- {
- public string UnitTypeName { get; set; }
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|