2025-06-16 17:24:23 +08:00

25 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace Syc.Basic.Web.WMS.Entitys
{
public class Token:Entity<int>
{
public string T_Code { get; set; }
public string Client { get; set; }
public bool Status { get; set; }
public int Creator_Id { get; set; }
public DateTime? Expired { get; set; }
public DateTime Createtime { get; set; }
}
}