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