32 lines
870 B
C#
32 lines
870 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.FrameworkCustomVMs
|
|||
|
|
{
|
|||
|
|
public partial class FrameworkCustomTemplateVM : BaseTemplateVM
|
|||
|
|
{
|
|||
|
|
[Display(Name = "_Admin.CustomCode")]
|
|||
|
|
public ExcelPropety CustomCode_Excel = ExcelPropety.CreateProperty<FrameworkCustom>(x => x.CustomCode);
|
|||
|
|
[Display(Name = "_Admin.CustomName")]
|
|||
|
|
public ExcelPropety CustomName_Excel = ExcelPropety.CreateProperty<FrameworkCustom>(x => x.CustomName);
|
|||
|
|
|
|||
|
|
protected override void InitVM()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class FrameworkCustomImportVM : BaseImportVM<FrameworkCustomTemplateVM, FrameworkCustom>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|