using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models.Outbound
|
{
|
[SugarTable(nameof(Dt_Production), "料号制造单")]
|
public class Dt_Production:BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "出库单主键")]
|
public int OrderId { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "制造单号")]
|
public string ProductionNo { get; set; }
|
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "制造部件")]
|
public string ManufacturingCo { get; set; }
|
|
[SugarColumn(IsNullable = false, DecimalDigits = 2, ColumnDescription = "出库数量")]
|
public decimal OutQuantity { get; set; }
|
}
|
}
|