2025-10-31 09:56:25 +08:00

44 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.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace Syc.Basic.Web.WMS.Entitys
{
public class Box:Entity<int>
{
//条码
public string Code { get; set; }
//规格
public string Spec { get; set; }
//名称
public string Type { get; set; }
//数量
public int? Qty { get; set; }
//净重
public double? Net_Weight { get; set; }
//毛重
public double? Gross_Weight { get; set; }
//生产批号
public string Lot_No { get; set; }
//长度
public string? Length { get; set; }
//打包时间
public DateTime? Dom_Time { get; set; }
//生产日期
public DateTime? Exp_Time { get; set; }
//数据类型(0:整箱1码垛)
public int DataType { get; set; }
//描述
public string? Mark { get; set; }
/// <summary>
/// 是否在装箱
/// </summary>
public bool IsUse { get; set; } = true;
public int IsDelete { get; set; }
public DateTime? Create_Time { get; set; }
}
}