647556386
2025-10-18 d01658c63cd541fe4ea5cec5c4bd7f23b9408cdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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; }
    }
}