80 lines
1.8 KiB
C#
80 lines
1.8 KiB
C#
|
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)]
|
|||
|
/// <summary>
|
|||
|
/// 用户ID
|
|||
|
/// </summary>
|
|||
|
public long userid { get; set; }
|
|||
|
|
|||
|
[DisplayName("姓名")]
|
|||
|
/// <summary>
|
|||
|
/// 真实姓名
|
|||
|
/// </summary>
|
|||
|
public string real_name { get; set; }
|
|||
|
[DisplayName("手机号")]
|
|||
|
/// <summary>
|
|||
|
/// 真实手机号
|
|||
|
/// </summary>
|
|||
|
public string real_telnumber { get; set; }
|
|||
|
|
|||
|
[Browsable(false)]
|
|||
|
/// <summary>
|
|||
|
/// 免单码
|
|||
|
/// </summary>
|
|||
|
public string m_code { get; set; }
|
|||
|
|
|||
|
[DisplayName("取件码")]
|
|||
|
/// <summary>
|
|||
|
/// 取件码
|
|||
|
/// </summary>
|
|||
|
public string q_code { get; set; }
|
|||
|
|
|||
|
[DisplayName("快递点")]
|
|||
|
/// <summary>
|
|||
|
/// 取件位置
|
|||
|
/// </summary>
|
|||
|
public string q_location { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 取件位置 - ID
|
|||
|
/// </summary>
|
|||
|
public long q_location_id { get; set; }
|
|||
|
|
|||
|
|
|||
|
[DisplayName("目的地")]
|
|||
|
/// <summary>
|
|||
|
/// 送达位置
|
|||
|
/// </summary>
|
|||
|
public string s_location { get; set; }
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
[Browsable(false)]
|
|||
|
/// <summary>
|
|||
|
/// 是否送达
|
|||
|
/// </summary>
|
|||
|
public bool is_arrive { get; set; }
|
|||
|
|
|||
|
|
|||
|
[DisplayName("提交时间"),ReadOnly(true)]
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
public DateTime crt_time { get; set; }
|
|||
|
}
|
|||
|
}
|