mh_custom/wtmProject.ViewModel/_Admin/WTM_CUSTOMVMs/WTM_CUSTOMSearcher.cs
2026-01-06 10:55:05 +08:00

30 lines
735 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.WTM_CUSTOMVMs
{
public partial class WTM_CUSTOMSearcher : BaseSearcher
{
[Display(Name = "_Admin.CustomAllName")]
public String CustomAllName { get; set; }
[Display(Name = "_Admin.AreaName")]
public Guid? AreaId { get; set; }
[Display(Name = "备注")]
public CustomTypeEnum? CustomType { get; set; }
protected override void InitVM()
{
}
}
}