57 lines
1.6 KiB
C#
57 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZR.Model.MES.wm
|
|
{
|
|
/// <summary>
|
|
/// 生产工单与领料单关联表
|
|
///</summary>
|
|
[SugarTable("wm_workorder_mr")]
|
|
public class WmWorkorderMr
|
|
{
|
|
/// <summary>
|
|
/// 流水号
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 工单id
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "workorder_id")]
|
|
public string WorkorderId { get; set; }
|
|
/// <summary>
|
|
/// 领料单id
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "materialRequisition_id")]
|
|
public string MaterialrequisitionId { get; set; }
|
|
/// <summary>
|
|
/// 乐观锁
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "REVISION")]
|
|
public int? Revision { 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; }
|
|
}
|
|
}
|