ImportTemplateView.cs 660 B

12345678910111213141516171819202122232425262728
  1. using NXWMS.DataAccess.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace NXWMS.Model.AppModels.View.Common
  9. {
  10. /// <summary>
  11. /// 导入模版视图
  12. /// </summary>
  13. public class ImportTemplateView : BAS_IMPORT_TEMPLATE_DTL
  14. {
  15. public string IMPORT_TEMPLATE_NAME { get; set; }
  16. public string IMPORT_MODE { get; set; }
  17. public string SOURCE_OBJECT_CODE { get; set; }
  18. public string SOURCE_OBJECT_NAME { get; set; }
  19. public string SOURCE_OBJECT_TYPE { get; set; }
  20. }
  21. }