| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Model.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; }
- }
- }
|