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.

62 lines
1.5 KiB
C#

using Custom.Utils.Framework;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProductionSystem_Model.ViewModel.Response.Test
{
public class TestStepVM
{
/// <summary>
/// 主键
/// </summary>
public string Id { get; set; }
/// <summary>
/// 产品类型
/// </summary>
[MyExportAttribute(true, 1)]
[Description("产品类型")]
public string ProductType { get; set; }
/// <summary>
/// 测试名称
/// </summary>
[MyExportAttribute(true, 2)]
[Description("测试名称")]
public string TestName { get; set; }
/// <summary>
/// 测试内容
/// </summary>
[MyExportAttribute(true, 3)]
[Description("测试内容")]
public string TestContent { get; set; }
/// <summary>
/// 索引
/// </summary>
[MyExportAttribute(true, 4)]
[Description("索引")]
public string Index { get; set; }
/// <summary>
/// 是否启用
/// </summary>
[MyExportAttribute(true, 5)]
[Description("是否启用")]
public string IsEnable { get; set; }
/// <summary>
/// 备注
/// </summary>
[MyExportAttribute(true, 6)]
[Description("备注")]
public string Remark { get; set; }
}
}