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