Files
wcs/货架标准上位机/Db/Models/DataModels.cs
2024-10-31 13:57:24 +08:00

21 lines
536 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS管理系统
{
[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; }
}
}