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
| 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
| {
| /// <summary>
| /// 主键ID(自增)
| /// </summary>
| [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
| public int Id { get; set; }
|
| /// <summary>
| /// 仓库ID
| /// </summary>
| [SugarColumn(IsNullable = false, ColumnDescription = "仓库ID")]
| public int WarehouseId { get; set; }
| }
| }
|
|