This commit is contained in:
qianjiawei
2023-09-13 16:15:59 +08:00
parent 5365efa279
commit 8b116138f9
4 changed files with 43 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.EquipMgr.Entities.Dto
{
public class MaintainInfoQueryinput
{
public string? sort { get; set; }
public string? keyword { get; set; }
public string? status { get; set; }
}
}