| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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
- {
- /// <summary>
- /// 标准物料规格型号设置表
- /// </summary>
- [Comment("标准物料规格型号设置表")]
- [Index(nameof(Model),nameof(ItemNumber), nameof(tenant_id),nameof(company_id), nameof(factory_id), IsUnique = true)]
- public class StandardItemModelSet:BaseEntity
- {
- /// <summary>
- /// 规格型号
- /// </summary>
- [Comment("规格型号")]
- public string Model { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Comment("物料编码")]
- public string ItemNumber { get; set; }
- /// <summary>
- /// 补货周期
- /// </summary>
- [Comment("补货周期")]
- public decimal ReplenishCycle { get; set; }
- }
- }
|