Container.cs
526 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model.Entities
{
[Table("container")]
public class Container
{
public int Id { get; set; }
public string Code { get; set; }
public string WarehouseCode { get; set; }
public string Status { get; set; }
public int PrintCount { get; set; }
public bool Enable { get; set; }
}
}