using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("ali_express")] public class AliExpress { /// /// /// public AliExpress() { } /// /// 主键id /// [SugarColumn(ColumnName = "id",IsPrimaryKey =true)] public long Id { get; set; } [SugarColumn(ColumnName = "com_no")] public System.String ComNo { get; set; } /// /// 物流公司名称 /// [SugarColumn(ColumnName = "name")] public System.String Name { get; set; } /// /// 物流公司服务电话 /// [SugarColumn(ColumnName = "phone")] public System.String Phone { get; set; } /// /// 是否支持打印 /// [SugarColumn(ColumnName = "support_print")] public System.String SupportPrint { get; set; } /// /// 对应的有赞物流id /// [SugarColumn(ColumnName = "yz_id")] public System.Int32? YzId { get; set; } } }