mh_custom/wtmProject.ViewModel/_Admin/WTM_AREAVMs/WTM_AREAImportVM.cs

32 lines
809 B
C#
Raw Normal View History

2024-05-16 17:30:33 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using WalkingTec.Mvvm.Core;
using WalkingTec.Mvvm.Core.Extensions;
using wtmProject.Model;
namespace wtmProject.ViewModel._Admin.WTM_AREAVMs
{
public partial class WTM_AREATemplateVM : BaseTemplateVM
{
[Display(Name = "_Admin.AreaCode")]
public ExcelPropety AreaCode_Excel = ExcelPropety.CreateProperty<WTM_AREA>(x => x.AreaCode);
[Display(Name = "_Admin.AreaName")]
public ExcelPropety AreaName_Excel = ExcelPropety.CreateProperty<WTM_AREA>(x => x.AreaName);
protected override void InitVM()
{
}
}
public class WTM_AREAImportVM : BaseImportVM<WTM_AREATemplateVM, WTM_AREA>
{
}
}