namespace DOAN.Model
{
///
/// 追溯零件清单
///
[SugarTable("trace_project_part")]
public class TraceProjectPart
{
///
/// 零件id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 项目号
///
[SugarColumn(ColumnName = "project_code")]
public string ProjectCode { get; set; }
///
/// 总成号
///
[SugarColumn(ColumnName = "production_code")]
public string ProductionCode { get; set; }
///
/// 总成名称
///
[SugarColumn(ColumnName = "production_name")]
public string ProductionName { get; set; }
///
/// 规格
///
public string Specification { get; set; }
///
/// 颜色
///
public string Colour { get; set; }
///
/// 左右脚 -L -R
///
[SugarColumn(ColumnName = "handle_type")]
public string HandleType { get; set; }
///
/// 客户编码
///
[SugarColumn(ColumnName = "custom_code")]
public string CustomCode { get; set; }
///
/// 单位
///
public string Unit { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
}
}