12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using XYY.Core.Standard;
- using XYY.Model.Standard.User.Enums;
- namespace XYY.Model.Standard.User
- {
- public class User_OperationLog : BaseEntity
- {
- public DateTime OperationTime
- {
- get; set;
- }
- public string OperationName
- {
- get; set;
- }
- public string Traget
- {
- get; set;
- }
- public string OperationUserName
- {
- get; set;
- }
- public UserSystem SystemId { get; set; }
- }
- public class ViewUserOperationLog
- {
- public int Qty
- {
- get; set;
- }
- public string OperationUserName
- {
- get; set;
- }
- public DateTime OperationTime
- {
- get; set;
- }
- public string OperationName
- {
- get; set;
- }
- public string Date
- {
- get; set;
- }
- }
- }
|