22 lines
423 B
C#
22 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUTS.Domain.ViewModels
|
|
{
|
|
public class RequestQAAjaxSearch
|
|
{
|
|
/// <summary>
|
|
/// 机型ID
|
|
/// </summary>
|
|
public int ProjectID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public string Number { get; set; }
|
|
}
|
|
}
|