23 lines
624 B
C#
Raw Normal View History

2025-06-23 15:41:15 +08:00
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 Name { get; set; }
public string Code { get; set; }
public string Spec { get; set; }
public int Qty { get; set; }
public double Net_Weight { get; set; }
public string Lot_No { get; set; }
public double Length { get; set; }
public DateTime Dom_Time { get; set; }
public DateTime Exp_Time { get; set; }
}
}