You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
826 B
C#
38 lines
826 B
C#
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; } = "";
|
|
|
|
}
|
|
}
|