1234567891011121314151617181920212223 |
- using DapperORMCore.Model.CoreModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Condition.Common
- {
- /// <summary>
- ///
- /// </summary>
- public class FileloadCondition : OperationInfo
- {
- /// <summary>
- /// 模版Id
- /// </summary>
-
- public int? TemplateId { get; set; }
- }
- }
|