mh_custom/wtmProject.ViewModel/_Admin/WTM_CONTRACTVMs/WTM_CONTRACTSearcher.cs

28 lines
716 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_CONTRACTVMs
{
public partial class WTM_CONTRACTSearcher : BaseSearcher
{
[Display(Name = "_Admin.CustomAllName")]
public Guid? CustomId { get; set; }
[Display(Name = "_Admin.MarkManage")]
public Guid? MarkManageId { get; set; }
[Display(Name = "_Admin.ContractName")]
public String ContractName { get; set; }
protected override void InitVM()
{
}
}
}