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_goods_category")]
[Description("参数品名分类")]
public class ParaGoodsCategoryInfo: DBEntityTenant
{
///
/// 品名分类代码
///
public string GOODS_CATEGORY { get; set; }
///
/// 品名分类名称
///
public string GOODS_CATEGORY_NAME { get; set; }
}
}