using DevExpress.Charts.Native; using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.FreeDb { [Table(Name = "SuSong")] public class SuSong { [Column(IsPrimary = true, IsIdentity = true)] public int Id { get; set; } public int No { get; set; } public int Start { get; set; } public int EndInfo { get; set; } public int Soure { get; set; } public int Model { get; set; } public int Destination { get; set; } public int Number { get; set; } public DateTime CreateTime { get; set; } public DateTime UpdateTime { get; set; } public string Remark { get; set; } = ""; } }