集成,总结MES功能
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.

MaterialGodownEntity.cs 438 B

3 months ago
12345678910111213141516171819
  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 料仓物料管理
  5. /// </summary>
  6. [SugarTable("godown_material")]
  7. public class MaterialGodownEntity : DEntityBase
  8. {
  9. /// <summary>
  10. /// 料仓编码
  11. /// </summary>
  12. public string Code { get; set; }
  13. /// <summary>
  14. /// 物料
  15. /// </summary>
  16. public string MaterialId { get; set; }
  17. }
  18. }