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.
BookingHeChuan/Myshipping.Application/Entity/Para/ParaGoodsInfo.cs

50 lines
1.1 KiB
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_goods")]
[Description("参数品名")]
public class ParaGoodsInfo : DBEntityTenant
{
/// <summary>
/// 品名编码
/// </summary>
public string GOODS_CODE { get; set; }
/// <summary>
/// 品名中文
/// </summary>
public string GOODS_NAME_CN { get; set; }
/// <summary>
/// 品名英文
/// </summary>
public string GOODS_NAME_EN { get; set; }
/// <summary>
/// 品名描述
/// </summary>
public string GOODS_DESP { get; set; }
/// <summary>
/// 品名分类
/// </summary>
public string GOODS_CATEGORY { get; set; }
/// <summary>
/// 品名分类名称
/// </summary>
public string GOODS_CATEGORY_NAME { get; set; }
}
}