/***********************************************************************
* Project: baifenBinfa
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: 34161541@qq.com
* CreateTime: 2021/6/14 23:17:57
* Description: 暂无
***********************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
{
///
/// 接龙活动表
///
public partial class CoreCmsSolitaire
{
///
/// 货品明细
///
[Display(Name = "货品明细")]
[SqlSugar.SugarColumn(IsIgnore = true)]
public List items { get; set; }
}
}