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.
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|