Files
WMS-Api/src/WMS.Web.Domain/Entitys/InStockTaskBox.cs
tongfei c54ee6d94b 优化
2024-01-03 15:46:56 +08:00

48 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// erp入库任务单的对应box箱信息表
/// 比例是1:N 一个任务单对应多个box箱号
/// </summary>
[Serializable]
[Table("t_erp_instock_task_box")]
public class InStockTaskBox : EntityBase
{
/// <summary>
/// Id
/// </summary>
public override int Id { get; set; }
/// <summary>
/// 入库任务单ID
/// </summary>
public int TaskId { get; set; }
/// <summary>
/// 箱号ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string BoxBillNo { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public DateTime? CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 明细
/// </summary>
public List<InStockTaskBoxDetails> Details { get; set; } = new List<InStockTaskBoxDetails>();
}
}