25 lines
508 B
C#
25 lines
508 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 UserPosition : Entity
|
|
{
|
|
|
|
public string PositionsCode { get; set; }
|
|
|
|
public int UsersId { get; set; }
|
|
|
|
public DateTime Createtime { get; set; }
|
|
|
|
public override object[] GetKeys()
|
|
{
|
|
return new object[] { PositionsCode,UsersId};
|
|
}
|
|
}
|
|
}
|