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.
81 lines
2.2 KiB
C#
81 lines
2.2 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ZJ_BYD.Model
|
|
{
|
|
/// <summary>
|
|
/// 支线信息表
|
|
/// </summary>
|
|
[SugarTable("t_branchinfo")]
|
|
public class T_BranchInfo
|
|
{
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 工位编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "stationcode")]
|
|
public string StationCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机壳SFC掩码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "productsfccode")]
|
|
public string ProductSfcCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 站点
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "site")]
|
|
public string BranchSite { get; set; }
|
|
|
|
/// <summary>
|
|
/// 资源
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "resource")]
|
|
public string BranchResource { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工序
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "procedure")]
|
|
public string BranchProcedure { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "para")]
|
|
public string BranchPara { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序索引
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "sortindex")]
|
|
public int SortIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime", IsOnlyIgnoreUpdate = true)]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdby", IsOnlyIgnoreUpdate = true)]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次修改时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updatedtime", IsOnlyIgnoreInsert = true)]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次修改者Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updatedby", IsOnlyIgnoreInsert = true)]
|
|
public string UpdatedBy { get; set; }
|
|
}
|
|
}
|