59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace ZR.Model.MES.wm
|
|
{
|
|
/// <summary>
|
|
/// 标签定义
|
|
///</summary>
|
|
[SugarTable("wm_labelsetting")]
|
|
public class WmLabelsetting
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// 产品名称
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "productName")]
|
|
public string ProductName { get; set; }
|
|
/// <summary>
|
|
/// 包装码
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "packageCode")]
|
|
public string PackageCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品码
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "productCode")]
|
|
public string ProductCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "CREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
/// <summary>
|
|
/// 更新人
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "UPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
/// <summary>
|
|
/// 更新时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
}
|
|
}
|