| | |
| | | using Microsoft.EntityFrameworkCore.Metadata.Internal; |
| | | using CMS.Plugin.MyExtension.Domain; |
| | | using Microsoft.EntityFrameworkCore.Metadata.Internal; |
| | | 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.Auditing; |
| | | |
| | | namespace CMS.Plugin.HIAWms.Domain.WmsContainerPlaces |
| | | { |
| | | /// <summary> |
| | | /// 库位容器关系 |
| | | /// </summary> |
| | | public class WmsContainerPlace |
| | | public class WmsContainerPlace : MyFullAuditedAggregateRoot<Guid> |
| | | { |
| | | /// <summary> |
| | | /// 库位编码 |
| | |
| | | /// 托盘编号 |
| | | /// </summary> |
| | | public string ContainerNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Adjusts the sort. |
| | | /// </summary> |
| | | /// <param name="sort">The sort.</param> |
| | | public void AdjustSort(int sort) |
| | | { |
| | | Sort = sort; |
| | | } |
| | | } |
| | | |
| | | } |