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;
///
/// 产品分类.
///
[SuppressSniffer]
public class ProductClassifyCrInput
{
///
/// 名称.
///
public string? fullName { get; set; }
///
/// 上级.
///
public string? parentId { get; set; }
}