using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWare.Wms.Core
{
[Table("KnifeToolUsageAnalysis")]
[Comment("刀具使用分析")]
public class KnifeToolUsageAnalysis : DEntityBase
{
///
/// 刀具编号
///
[Comment("刀具编号")]
[Required, MaxLength(32)]
public string KnifeToolID { get; set; }
///
/// 型号
///
[Comment("型号")]
[MaxLength(32)]
public string KnifeToolModel { get; set; }
///
/// 刀沿数
///
[Comment("刀沿数")]
public int KnifeEdgeNumber { get; set; }
///
/// 刀具寿命
///
[Comment("刀具寿命")]
public int KnifeToolLife { get; set; }
///
/// 刀身长度
///
[Comment("刀身长度")]
public int KnifeLength { get; set; }
///
/// 适配设备;适配设备编号
///
[Comment("适配设备;适配设备编号")]
[MaxLength(32)]
public string EquipmentID { get; set; }
///
/// 备注
///
[MaxLength(255)]
public string Remarks { get; set; }
}
}