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.
47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ZJ_BYD.Model
|
|
{
|
|
|
|
[SugarTable("t_printinfo")]
|
|
public class T_PrintInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "filename")]
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "barcode")]
|
|
public string BarCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 软件版本号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "softversion")]
|
|
public string SoftVersion { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印结果
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "printresult")]
|
|
public bool? PrintResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime", IsOnlyIgnoreUpdate = true)]
|
|
public DateTime? CreatedTime { get; set; }
|
|
}
|
|
}
|