/*********************************************************************** * Project: CoreCms * ProjectName: 百分兵法管理系统 * Web: hhtp://chuanyin.com * Author: * Email: jianweie@163.com * CreateTime: 2021-06-08 22:14:58 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 物流公司表 /// [SugarTable("CoreCmsLogistics",TableDescription = "物流公司表")] public partial class CoreCmsLogistics { /// /// 物流公司表 /// public CoreCmsLogistics() { } /// /// 序列 /// [Display(Name = "序列")] [SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)] [Required(ErrorMessage = "请输入{0}")] public System.Int32 id { get; set; } /// /// 物流公司名称 /// [Display(Name = "物流公司名称")] [SugarColumn(ColumnDescription = "物流公司名称")] [Required(ErrorMessage = "请输入{0}")] [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String logiName { get; set; } /// /// 物流公司编码 /// [Display(Name = "物流公司编码")] [SugarColumn(ColumnDescription = "物流公司编码")] [Required(ErrorMessage = "请输入{0}")] [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String logiCode { get; set; } /// /// 物流logo /// [Display(Name = "物流logo")] [SugarColumn(ColumnDescription = "物流logo", IsNullable = true)] [StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String imgUrl { get; set; } /// /// 物流电话 /// [Display(Name = "物流电话")] [SugarColumn(ColumnDescription = "物流电话", IsNullable = true)] [StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String phone { get; set; } /// /// 物流网址 /// [Display(Name = "物流网址")] [SugarColumn(ColumnDescription = "物流网址", IsNullable = true)] [StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String url { get; set; } /// /// 排序 /// [Display(Name = "排序")] [SugarColumn(ColumnDescription = "排序")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 sort { get; set; } /// /// 是否删除 /// [Display(Name = "是否删除")] [SugarColumn(ColumnDescription = "是否删除")] [Required(ErrorMessage = "请输入{0}")] public System.Boolean isDelete { get; set; } } }