#region 引用命名 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; #endregion namespace ChangKeTec.Wms.Models.Wms { public class TM_CQBMPT_AQLSTANDARD { [Key] [Column(Order = 0)] public decimal AQL { get; set; } [Key] [Column(Order = 1)] public int minCnt { get; set; } [Key] [Column(Order = 2)] public int maxCnt { get; set; } public int sampleCnt { get; set; } } }