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
{
///
/// 工件出库记录表
///
[Table("WorkPieceOutboundRecord")]
[Comment("工件出库记录表")]
public class WorkPieceOutboundRecord : DEntityBase
{
///
/// 操作类型 (下线、撤销下线、出库、撤销出库)
///
[Comment("操作类型")]
[MaxLength(500)]
public string OperationType { get; set; }
///
/// 成品码
///
[Comment("成品码")]
[Required]
[MaxLength(255)]
public string OP80NewCode { get; set; }
///
/// 工件号
///
[Comment("工件号")]
[MaxLength(32)]
public string WorkPieceID { get; set; }
///
/// 小车码
///
[Comment("小车码")]
[MaxLength(32)]
public string CarNo { get; set; }
///
/// 备注
///
[Comment("备注")]
[MaxLength(500)]
public string Remark { get; set; }
}
}