using Api.Framework.Enums; using Api.Framework.Tools; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Delivery.Plugin.Model { public class fl_plugin_delivery_hist:base_model { /// /// 用户ID /// public long userid { get; set; } /// /// 订单ID /// public long ordertable_id { get; set; } /// /// 订单类型 /// public CpsType ordertable_type { get; set; } /// /// 订单创建时间 /// public DateTime ordertable_cratetime { get; set; } /// /// 免单码 /// public string order_code { get; set; } /// /// 是否有效 /// public bool effective { get; set; } /// /// 是否被使用 /// public int using_userid { get; set; } /// /// 备注 /// public string remark { get; set; } } }