using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Model.Models.Allocate
{
[SugarTable(nameof(Stuedent), "调拨单")]
public class Stuedent
{
///
/// 主键ID(自增)
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 仓库ID
///
[SugarColumn(IsNullable = false, ColumnDescription = "仓库ID")]
public int WarehouseId { get; set; }
}
}