using SqlSugar;
using Admin.NET.Core;
using Admin.NET.Core.Service;
using System.Collections.Generic;
using System;
namespace Admin.NET.Application
{
///
/// GenerateTest输出参数
///
public class generatetestOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 价格
///
public decimal Price { get; set; }
///
/// 过期日期
///
public DateTime ExpireDate { get; set; }
///
/// 状态
///
public bool Status { get; set; }
}
}