添加项目文件。
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductClassify;
|
||||
|
||||
/// <summary>
|
||||
/// 产品分类.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductClassifyCrInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
public string? fullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上级.
|
||||
/// </summary>
|
||||
public string? parentId { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductClassify;
|
||||
|
||||
/// <summary>
|
||||
/// 产品分类.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductClassifyInfoOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 自然主键.
|
||||
/// </summary>
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
public string fullName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上级.
|
||||
/// </summary>
|
||||
public string parentId { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using JNPF.Common.Security;
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductClassify;
|
||||
|
||||
/// <summary>
|
||||
/// 产品分类.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductClassifyTreeOutput : TreeModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public string fullName { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.ProductClassify;
|
||||
|
||||
/// <summary>
|
||||
/// 产品分类.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ProductClassifyUpInput : ProductClassifyCrInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user