25 lines
511 B
C#
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; }
|
|
}
|
|
}
|