You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
804 B
C#

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
{
/// <summary>
/// 参数品名分类
/// </summary>
[SugarTable("para_contract_no")]
[Description("参数合约号")]
public class ParaContractNoInfo : DBEntityTenant
{
/// <summary>
/// 合约号编号
/// </summary>
public string CONTRACT_NO { get; set; }
/// <summary>
/// 合约号名称
/// </summary>
public string CONTRACT_NAME { get; set; }
/// <summary>
/// 合约号备注
/// </summary>
public string CONTRACT_NOTE { get; set; }
}
}