12345678910111213141516171819202122232425262728 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.View.Common
- {
- /// <summary>
- /// 导入模版视图
- /// </summary>
- public class ImportTemplateView : BAS_IMPORT_TEMPLATE_DTL
- {
- public string IMPORT_TEMPLATE_NAME { get; set; }
- public string IMPORT_MODE { get; set; }
- public string SOURCE_OBJECT_CODE { get; set; }
- public string SOURCE_OBJECT_NAME { get; set; }
- public string SOURCE_OBJECT_TYPE { get; set; }
-
- }
- }
|