Files
wcs/货架标准上位机/Db/Models/DataModels.cs
hehaibing-1996 e89b64ea3a !提交代码
2024-04-15 18:43:28 +08:00

21 lines
530 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; }
}
}