| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using Business.Domain;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.StructuredDB.WMS
- {
- /// <summary>
- /// 平台规格库存对照
- /// </summary>
- [Table("WMS_PlatformSpecificationComparison")]
- [Comment("平台规格库存对照")]
- public class WMS_PlatformSpecificationComparison : BaseEntity
- {
- /// <summary>
- /// 主键
- /// </summary>
- /// <param name="Id"></param>
- public WMS_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; }
- }
- }
|