You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
714 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models.Model
{
/// <summary>
/// 设备报修 equipmentCode设备编码、factory工厂源、userName用户账号、phoneNumber联系方式、userNickName用户昵称 orderDesc(故障描述)
/// </summary>
public class MachineRepairModel
{
public string equipmentCode { get; set; }
public string factory { get; set; }
public string userName { get; set; }
public string phoneNumber { get; set; }
public string userNickName { get; set; }
public string orderDesc { get; set; }
}
}