刘磊
2025-06-09 dabbcafc629ef87d11ba55ef8cc1cdc776c047d8
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
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
{
    [SugarTable(nameof(Dt_WheelsStock_hty), "库存历史信息")]
 
    public class Dt_WheelsStock_hty : Dt_WheelsStock
    {
        /// <summary>
        /// 完成时间
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成时间")]
        public DateTime? FinishWheelDate { get; set; } = DateTime.Now;
 
        /// <summary>
        /// 完成方式
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成方式")]
        public int OperateType { get; set; }
    }
}