using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 用户生成订单请求实体 /// public class RequestUserOder { /// /// 车ID /// public string carId { get; set; } /// /// 站点ID /// //public string siteID //{ // get; set; //} /// /// 站点名称 /// //public string siteName //{ // get; set; //} /// /// 景点ID /// //public string scenicID //{ // get; set; //} /// /// 景点名称 /// //public string scenicName //{ // get; set; //} /// /// 预借时间分钟 /// public int borrowedTime { get; set; } /// /// 费用 /// public decimal costs { get; set; } /// /// 支付类型1:微信2:淘宝 /// public int payType { get; set; } } }