using Api.Framework.Tools; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Delivery.Plugin.Model { public class fl_plugin_delivery_item : base_model { [Browsable(false)] public long groupid { get; set; } [ReadOnly(true)] /// /// 用户ID /// public long userid { get; set; } [DisplayName("姓名")] /// /// 真实姓名 /// public string real_name { get; set; } [DisplayName("手机号")] /// /// 真实手机号 /// public string real_telnumber { get; set; } [Browsable(false)] /// /// 免单码 /// public string m_code { get; set; } [DisplayName("取件码")] /// /// 取件码 /// public string q_code { get; set; } [DisplayName("快递点")] /// /// 取件位置 /// public string q_location { get; set; } /// /// 取件位置 - ID /// public long q_location_id { get; set; } [DisplayName("目的地")] /// /// 送达位置 /// public string s_location { get; set; } [Browsable(false)] /// /// 是否送达 /// public bool is_arrive { get; set; } [DisplayName("提交时间"),ReadOnly(true)] /// /// 创建时间 /// public DateTime crt_time { get; set; } } }