using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.Domain { /// /// 标准物料规格型号设置表 /// [Comment("标准物料规格型号设置表")] [Index(nameof(Model),nameof(ItemNumber), nameof(tenant_id),nameof(company_id), nameof(factory_id), IsUnique = true)] public class StandardItemModelSet:BaseEntity { /// /// 规格型号 /// [Comment("规格型号")] public string Model { get; set; } /// /// 物料编码 /// [Comment("物料编码")] public string ItemNumber { get; set; } } }