|
@@ -1,4 +1,5 @@
|
|
|
using Business.Model;
|
|
using Business.Model;
|
|
|
|
|
+using Microsoft.EntityFrameworkCore;
|
|
|
using System;
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
|
using System.ComponentModel;
|
|
using System.ComponentModel;
|
|
@@ -44,5 +45,18 @@ namespace Bussiness.Model.MES.IC
|
|
|
[Description("主/替")]
|
|
[Description("主/替")]
|
|
|
public int ismain { get; set; }
|
|
public int ismain { get; set; }
|
|
|
|
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 使用数量
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(20, 8)]
|
|
|
|
|
+ [Description("使用数量")]
|
|
|
|
|
+ public decimal? use_amount { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 替代数量
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [Precision(20, 8)]
|
|
|
|
|
+ [Description("使用数量")]
|
|
|
|
|
+ public decimal? replace_amount { get; set; }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|