using Business.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.Tech
{
///
/// 治具表(工装表)
///
public class mes_tech_proc_accessory : BaseEntity
{
///
/// 治具主键
///
[Key]
public long tech_proc_acc_id { get; set; }
///
/// 工艺工序主键
///
public long tech_proc_id { get; set; }
///
/// 工装id
///
public long equip_id { get; set; }
///
/// 工装编号
///
[StringLength(100)]
public string equip_no { get; set; }
///
/// 数量
///
public int qty { get; set; }
}
}