1234567891011121314151617181920 |
- using MathNet.Numerics.LinearAlgebra.Factorization;
- using System;
- using System.Collections.Generic;
- namespace JiaZhiQuan.Common.Models.VO.UE {
- //c端用户
- public class SimpleUserInfo {
- public long userId { get; set; }
- public string alias { get; set; }
- public string username { get; set; }
- public string headImage { get; set; }
- }
- //后台系统用户
- public class SimpleSysUserInfo {
- public int id { get; set; }
- public string loginName { get; set; }
- public string name { get; set; }
- public int state { get; set; }
- }
- }
|