下面编写二检首检
This commit is contained in:
parent
21ceea2a5b
commit
3b10b811a2
@ -9,9 +9,8 @@
|
||||
"urls": "http://localhost:8888", //(app会默认去读)项目启动url,如果改动端口前端对应devServer也需要进行修改
|
||||
"dbConfigs": [
|
||||
{
|
||||
//"Conn": "Data Source=192.168.0.36;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
|
||||
|
||||
"Conn": "Data Source=47.116.122.230;Port=3307;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
|
||||
"Conn": "Data Source=192.168.0.36;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
|
||||
//"Conn": "Data Source=47.116.122.230;Port=3307;User ID=root;Password=123456;Initial Catalog=ZrAdmin;",
|
||||
"DbType": 0, //数据库类型 MySql = 0, SqlServer = 1, Oracle = 3,PgSql = 4
|
||||
"ConfigId": "0", //多租户唯一标识
|
||||
"IsAutoCloseConnection": true
|
||||
|
||||
@ -6,14 +6,13 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.qc
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 终检收集表
|
||||
///</summary>
|
||||
[SugarTable("qc_fqc")]
|
||||
public class QcFqc
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
///</summary>
|
||||
@ -99,11 +98,37 @@ namespace ZR.Model.MES.qc
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "scrapNum03")]
|
||||
public string ScrapNum03 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 乐观锁
|
||||
/// 一次合格数量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "REVISION")]
|
||||
public int? Revision { get; set; }
|
||||
[SugarColumn(ColumnName = "firstgoodNum")]
|
||||
public int? FirstgoodNum { get; set; }
|
||||
/// <summary>
|
||||
/// 一次合格率80
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "firstgoodRate")]
|
||||
public int? FirstgoodRate { get; set; }
|
||||
/// <summary>
|
||||
/// 最终合格数量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "finalgoodNum")]
|
||||
public int? FinalgoodNum { get; set; }
|
||||
/// <summary>
|
||||
/// 最终合格率70
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "finalgoodRate")]
|
||||
public int? FinalgoodRate { get; set; }
|
||||
/// <summary>
|
||||
/// 报废数
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "polishNum")]
|
||||
public int? PolishNum { get; set; }
|
||||
/// <summary>
|
||||
/// 报废率70
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "polishRate")]
|
||||
public int? PolishRate { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
///</summary>
|
||||
@ -128,3 +153,5 @@ namespace ZR.Model.MES.qc
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user