| 1234567891011121314151617181920212223 | using System;using System.Collections.Generic;using System.Text;namespace Dfs.WayneChina.SpsDbManager.ResultSet{    public class FuelPriceChangeConfigResult    {        public int Ver { get; set; }        public string EffeTime { get; set; }        public int LogicId { get; set; }        public string OilId { get; set; }        public string OilName { get; set; }        public string Density { get; set; }        public uint Price { get; set; }    }}
 |