ChouBox/ChouBox.Model/Entities/KkShare.cs
2025-04-23 19:20:23 +08:00

33 lines
596 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 商品分享记录表
/// </summary>
public partial class KkShare
{
public uint Id { get; set; }
/// <summary>
/// 点击人ID
/// </summary>
public uint UserId { get; set; }
/// <summary>
/// 商品id
/// </summary>
public uint GoodsId { get; set; }
/// <summary>
/// 分享用户id
/// </summary>
public uint ShareUserId { get; set; }
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
}