49 lines
1.3 KiB
C#
49 lines
1.3 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;
|
|
using UI.Framework.Entitys;
|
|
|
|
namespace Delivery.Plugin.Model
|
|
{
|
|
public class fl_plugin_delivery_kuaidi:base_model
|
|
{
|
|
/// <summary>
|
|
/// 快递点名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
[Browsable(false)]
|
|
/// <summary>
|
|
/// 学校ID
|
|
/// </summary>
|
|
public long group_id { get; set; }
|
|
/// <summary>
|
|
/// 打印机序号
|
|
/// </summary>
|
|
public string print_sn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印机秘钥
|
|
/// </summary>
|
|
public string print_secret { get; set; }
|
|
|
|
[Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|
/// <summary>
|
|
/// 打印Model
|
|
/// </summary>
|
|
public string print_model { get; set; }
|
|
|
|
/// <summary>
|
|
/// 快递点备注
|
|
/// </summary>
|
|
public string remark { get; set; }
|
|
public fl_plugin_delivery_kuaidi()
|
|
{
|
|
this.remark = this.print_secret = this.print_sn = this.print_model = this.name = string.Empty;
|
|
}
|
|
}
|
|
}
|