using Microsoft.EntityFrameworkCore;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
/*
|
* @author : http://www.chiner.com.cn
|
* @date : 2024-1-9
|
* @desc : 工件出库表
|
*/
|
namespace iWare.Wms.Core
|
{
|
/// <summary>
|
/// 工件出库表
|
/// </summary>
|
[Table("WorkPieceOutbound")]
|
[Comment("工件出库表")]
|
public class WorkPieceOutbound : DEntityBase
|
{
|
/// <summary>
|
/// 工件号
|
/// </summary>
|
[Comment("工件号")]
|
[Required, MaxLength(32)]
|
public string WorkPieceID { get; set; }
|
|
/// <summary>
|
/// 工件OP80打的码
|
/// </summary>
|
[Comment("OP80打码")]
|
[Required]
|
[MaxLength(255)]
|
public string OP80NewCode { get; set; }
|
|
/// <summary>
|
/// 出库时间
|
/// </summary>
|
[Comment("出库时间")]
|
public DateTime? WorkPieceOutboundTime { get; set; }
|
|
|
/// <summary>
|
/// 出库人Id
|
/// </summary>
|
[Comment("出库人Id")]
|
public long? WorkPieceOutboundUserId { get; set; }
|
|
/// <summary>
|
/// 出库人名称
|
/// </summary>
|
[Comment("出库人名称")]
|
[MaxLength(32)]
|
public string WorkPieceOutboundUserName { get; set; }
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[Comment("备注")]
|
[MaxLength(500)]
|
public string Remark { get; set; }
|
}
|
}
|