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

30 lines
549 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 盒子锁箱信息
/// </summary>
public partial class GoodsLock
{
public uint Id { get; set; }
/// <summary>
/// 用户ID
/// </summary>
public uint UserId { get; set; }
/// <summary>
/// 盒子id_num
/// </summary>
public string GoodsIdNum { get; set; } = null!;
/// <summary>
/// 过期时间
/// </summary>
public uint Endtime { get; set; }
public uint UpdateTime { get; set; }
}