25 lines
681 B
C#
Raw Permalink Normal View History

2025-06-24 18:26:51 +08:00
using Nito.AsyncEx;
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 Produce:Entity<int>
{
public string Type { get; set; }
public string Spec { get; set; }
public double Length { get; set; }
public string Lot_No { get; set; }
public string Name { get; set; }
public int? Qty { get; set; }
public string BoxSpec { get; set; }
2025-06-24 18:26:51 +08:00
public DateTime? Exp_Time { get; set; }
public int IfUse { get; set; }
public int IsDelete { get; set; }
}
}