using SqlSugar; namespace EInk.Models { [SugarTable("lot2lot3_info")] public class Lot2Lot3Model { [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } [SugarColumn(ColumnName = "lot_id")] public string lot_id { get; set; } [SugarColumn(ColumnName = "is_send")] public int is_send { get; set; } [SugarColumn(ColumnName = "content")] public string content { get; set; } [SugarColumn(ColumnName = "create_time")] public DateTime create_time { get; set; } [SugarColumn(ColumnName = "send_time")] public DateTime send_time { get; set; } [SugarColumn(ColumnName = "product_no")] public string product_no { get; set; } [SugarColumn(ColumnName = "product_id")] public int product_id { get; set; } } }