2、审批角色 添加 是否总部【ISHEAD】属性 ,总部会同步到子公司,子公司不能修改总部传入的数据 3、审批明细 添加【ISHEAD】属性 ,功能暂未处理 4、首页获取待办修改 使不过滤ORGID 5、用户添加时,如果是总公司 同步到子公司,同步修改了一些bug 6、审批页面数据获取方法【FullGet】提供修改前提 后续功能待完善 7、HeadHelper.GetIsHead 判断是否总部 ["Tenant"]"0003"
30 lines
666 B
C#
30 lines
666 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace APT.Utility
|
|
{
|
|
public class SessionData
|
|
{
|
|
public int GrantType { get; set; }
|
|
public Guid? DataChannelId { get; set; }
|
|
public string UserName { get; set; }
|
|
|
|
public string UserCode { get; set; }
|
|
|
|
public Guid? DepartmentId { get; set; }
|
|
|
|
public Guid? UserId { get; set; }
|
|
|
|
public Guid? OrgId { get; set; }
|
|
|
|
public Guid? RootOrgId { get; set; }
|
|
|
|
public string MineType { get; set; }
|
|
|
|
public string[] DataRule { get; set; }
|
|
public bool IsHead { get; set; }
|
|
}
|
|
}
|