31 lines
766 B
C#
31 lines
766 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure;
|
|
|
|
namespace CompetitionAPI.api.back
|
|
{
|
|
/// <summary>
|
|
/// 初始化出线电缆编号牌接口请求实体
|
|
/// </summary>
|
|
public class InitCableNumberPlateRequest
|
|
{
|
|
/// <summary>
|
|
/// 考试id
|
|
/// </summary>
|
|
public string ExamId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 台区
|
|
/// </summary>
|
|
public string PlatformArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 进线电缆型号及长度
|
|
/// </summary>
|
|
public string IncomingLineModelLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出线电缆型号及长度
|
|
/// </summary>
|
|
public string OutgoingLineModelLength { get; set; }
|
|
}
|
|
}
|