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
{
///
/// 主键
///
public string Id { get; set; }
///
/// 产品类型
///
[MyExportAttribute(true, 1)]
[Description("产品类型")]
public string ProductType { get; set; }
///
/// 测试名称
///
[MyExportAttribute(true, 2)]
[Description("测试名称")]
public string TestName { get; set; }
///
/// 测试内容
///
[MyExportAttribute(true, 3)]
[Description("测试内容")]
public string TestContent { get; set; }
///
/// 索引
///
[MyExportAttribute(true, 4)]
[Description("索引")]
public string Index { get; set; }
///
/// 是否启用
///
[MyExportAttribute(true, 5)]
[Description("是否启用")]
public string IsEnable { get; set; }
///
/// 备注
///
[MyExportAttribute(true, 6)]
[Description("备注")]
public string Remark { get; set; }
}
}