28 lines
896 B
C#
28 lines
896 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 打印编码对应的设备
|
|
/// </summary>
|
|
[SugarTable("YB_PrintCodeEqu", TableDescription = "打印编码对应的设备", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_PrintCodeEqu
|
|
{
|
|
/// <summary>
|
|
/// 打印编码对应的id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription ="打印编码对应的id",IndexGroupNameList =new string[] { "index_printid"})]
|
|
public Guid PrintId { get; set; }
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "设备编号", IndexGroupNameList = new string[] { "index_facecode" })]
|
|
public string FacEcode { get; set; }
|
|
}
|
|
}
|