You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
633 B
29 lines
633 B
#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; }
|
|
}
|
|
}
|
|
|