32 lines
844 B
C#
32 lines
844 B
C#
|
|
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.FrameworkPostVMs
|
|||
|
|
{
|
|||
|
|
public partial class FrameworkPostTemplateVM : BaseTemplateVM
|
|||
|
|
{
|
|||
|
|
[Display(Name = "_Admin.PostCode")]
|
|||
|
|
public ExcelPropety PostCode_Excel = ExcelPropety.CreateProperty<FrameworkPost>(x => x.PostCode);
|
|||
|
|
[Display(Name = "_Admin.PostName")]
|
|||
|
|
public ExcelPropety PostName_Excel = ExcelPropety.CreateProperty<FrameworkPost>(x => x.PostName);
|
|||
|
|
|
|||
|
|
protected override void InitVM()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class FrameworkPostImportVM : BaseImportVM<FrameworkPostTemplateVM, FrameworkPost>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|