| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Business.Domain;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.StructuredDB.WMS
- {
- /// <summary>
- /// 平台规格库存对照
- /// </summary>
- [Comment("平台规格库存对照")]
- public class PlatformSpecificationComparison : BaseEntity
- {
- /// <summary>
- /// 主键
- /// </summary>
- /// <param name="Id"></param>
- public PlatformSpecificationComparison(long Id) : base(Id)
- {
- }
- /// <summary>
- /// 标准规格型号
- /// </summary>
- [Comment("标准规格型号")]
- public string? StandardSpecifications { get; set; }
- /// <summary>
- /// 海王规格型号
- /// </summary>
- [Comment("海王规格型号")]
- public string? HWSpecificationModel { get; set; }
- /// <summary>
- /// 国科规格型号
- /// </summary>
- [Comment("国科规格型号")]
- public string? GKSpecificationModel { get; set; }
- /// <summary>
- /// 库存型号
- /// </summary>
- public string? Type { get; set; }
- }
- }
|