2025-11-11 09:20:17 +08:00

47 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace Syc.Basic.Web.WMS.Entitys
{
public class Silk:Entity<int>
{
//条码
public string Code { get; set; }
//名称
public string Name { get; set; }
//配方
public string Type { get; set; }
//颜色
public string Color { get; set; }
//净重
public double? Net_Weight { get; set; }
//长度
public string? Length { get; set; }
//包装时间
public DateTime? Date { get; set; }
//生产批号
public string Lot_No { get; set; }
/// <summary>
/// 0:已扫码待称重 1:已称重待装箱 2:已装箱 3:已码垛
/// </summary>
[ConcurrencyCheck]
public int Status { get; set; }
public string Status_Details { get; set; }
public int? BoxId { get; set; }
public int IsDelete { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime Createtime { get; set; } = DateTime.Now;
}
}