using Myshipping.Core.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 参数品名分类 /// [SugarTable("para_contract_no")] [Description("参数合约号")] public class ParaContractNoInfo : DBEntityTenant { /// /// 合约号编号 /// public string CONTRACT_NO { get; set; } /// /// 合约号名称 /// public string CONTRACT_NAME { get; set; } /// /// 合约号备注 /// public string CONTRACT_NOTE { get; set; } } }