2025-03-28 09:49:56 +08:00

40 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZJZCGCMemberClient.Model
{
/// <summary>
/// 商品分类菜单相关类
/// </summary>
public class ClassifyModel
{
/// <summary>
/// 时间戳13 位)
/// </summary>
public long timestamp { get; set; }
/// <summary>
/// 商品分类 id 编码
/// </summary>
public string classifyCode { get; set; }
///// <summary>
///// 父级 id 编码(存在多级分类时通过此编码指定父级)
///// </summary>
//public string parentCode { get; set; }
/// <summary>
/// 分类菜单名称
/// </summary>
public string classifyName { get; set; }
/// <summary>
/// 排序权重(越大越靠前)
/// </summary>
public int sort { get; set; }
/// <summary>
/// 该分类下所有商品的 id 编码集合
/// </summary>
public List<string> goodsCodeList { get; set; }
}
}