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