using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Dfs.WayneChina.HengshanPos.Model { public class SqNoMapper { [Key] public int Id { get; set; } public ushort EpsSqNo { get; set; } public int FcSqNo { get; set; } public int PumpId { get; set; } public int NozzleId { get; set; } public bool Submitted { get; set; } } }