1234567891011121314151617181920212223 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Rule
- {
- /// <summary>
- /// 明细规则查询结果
- /// </summary>
- public class RuleDetailResult : BAS_RULE_DTL
- {
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- public string ParamFlagName { get; set; }
- }
- }
|