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 { /// /// 快递点名称 /// public string name { get; set; } [Browsable(false)] /// /// 学校ID /// public long group_id { get; set; } /// /// 打印机序号 /// public string print_sn { get; set; } /// /// 打印机秘钥 /// public string print_secret { get; set; } [Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))] /// /// 打印Model /// public string print_model { get; set; } /// /// 快递点备注 /// 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; } } }