59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using Admin.NET.Core;
|
|
namespace Admin.NET.Application.Entity;
|
|
|
|
/// <summary>
|
|
/// 汇报单
|
|
/// </summary>
|
|
[SugarTable("ReportTable","汇报单")]
|
|
public class ReportTable : EntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OddNumber", ColumnDescription = "单号", Length = 32)]
|
|
public string? OddNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "StartDate", ColumnDescription = "业务日期")]
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "State", ColumnDescription = "状态")]
|
|
public int? State { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ProductType", ColumnDescription = "生产类型", Length = 32)]
|
|
public string? ProductType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产线
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ProductionLine", ColumnDescription = "生产线", Length = 32)]
|
|
public string? ProductionLine { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产线编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CodeNum", ColumnDescription = "生产线编码", Length = 32)]
|
|
public string? CodeNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 源单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SourceNumber", ColumnDescription = "源单号", Length = 32)]
|
|
public string? SourceNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 64)]
|
|
public string? Remarks { get; set; }
|
|
|
|
}
|