Zhang-Hong-Lin
2025-05-27 7924008bfdcfc7a73428826fc10ae475b1f71353
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
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models
{
    /// <summary>
    /// 出库重量历史
    /// </summary>
    [SugarTable(nameof(dt_Weight_hty), "出库重量历史")]
    public class dt_Weight_hty : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 重量
        /// </summary>
        [SugarColumn(IsNullable = true,  ColumnDescription = "重量")]
        public float weight { get; set; }
 
        /// <summary>
        /// 合格
        /// </summary>
        [SugarColumn(IsNullable = true,  ColumnDescription = "合格")]
        public int qualified { get; set; }
 
        /// <summary>
        /// 区间值
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "区间值")]
        public string interval { get; set; }
    }
}