21 lines
533 B
C#
21 lines
533 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace 智慧物流软件系统
|
|
{
|
|
[SugarTable("test_table")]
|
|
public class MyTestTable
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]//主键、自增
|
|
public long Id { get; set; }
|
|
public string Info1 { get; set; }
|
|
public string Info2 { get; set; }
|
|
public string Status { get; set; }
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|