Files
wcs/货架标准上位机/Db/Models/DataModels.cs
2025-01-08 15:51:28 +08:00

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