You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
C#
70 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace Models
|
|
{
|
|
/// <summary>
|
|
/// 生产排程实体类
|
|
///</summary>
|
|
[SugarTable("zx_scheduling")]
|
|
public class ZxSchedulingEntity
|
|
{
|
|
/// <summary>
|
|
/// 备 注:
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:机台号
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "device_no")]
|
|
public int? DeviceNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备 注:成品代号1
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "recipe_name_1")]
|
|
public string RecipeName1 { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备 注:配方编号1
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "recipe_no_1")]
|
|
public string RecipeNo1 { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备 注:标称尺度1
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "spec_name_1")]
|
|
public string SpecName1 { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备 注:成品代号2
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "recipe_name_2")]
|
|
public string RecipeName2 { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备 注:配方编号2
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "recipe_no_2")]
|
|
public string RecipeNo2 { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备 注:标称尺度2
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "spec_name_2")]
|
|
public string SpecName2 { get; set; } = string.Empty;
|
|
}
|
|
|
|
} |