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; }
|
}
|
}
|