| | |
| | | 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; |
| | |
| | | /// <summary> |
| | | /// 库位容器关系 |
| | | /// </summary> |
| | | public class WmsContainerPlace : FullAuditedAggregateRoot<Guid> |
| | | public class WmsContainerPlace : MyFullAuditedAggregateRoot<Guid> |
| | | { |
| | | /// <summary> |
| | | /// 库位编码 |
| | |
| | | /// 托盘编号 |
| | | /// </summary> |
| | | public string ContainerNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序 |
| | | /// </summary> |
| | | public virtual int Sort { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否禁用 |
| | | /// </summary> |
| | | public virtual bool? IsDisabled { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Adjusts the sort. |