This commit is contained in:
2023-05-31 10:19:05 +08:00
parent 1b65a7a9e5
commit 9c621c75cd
238 changed files with 9905 additions and 4034 deletions

View File

@@ -41,4 +41,20 @@ public class CodeGenAuthorizeModuleResource
/// 权限条件.
/// </summary>
public List<object> conditionalModel { get; set; }
}
/// <summary>
/// 代码生成 数据过滤.
/// </summary>
public class CodeGenDataRuleModuleResourceModel : CodeGenAuthorizeModuleResourceModel
{
/// <summary>
/// 请求类型 pc 和 app.
/// </summary>
public string UserOrigin { get; set; }
/// <summary>
/// 权限条件 json.
/// </summary>
public string conditionalModelJson { get; set; }
}

View File

@@ -86,4 +86,19 @@ public class ChunkModel
/// 文件.
/// </summary>
public IFormFile file { get; set; }
/// <summary>
/// 路径类型 defaultPath(默认路径) selfPath(自定义路径).
/// </summary>
public string pathType { get; set; } = "defaultPath";
/// <summary>
/// 是否用户存储0否1是.
/// </summary>
public string isAccount { get; set; } = "0";
/// <summary>
/// 自定义文件夹路径.
/// </summary>
public string folder { get; set; }
}

View File

@@ -32,4 +32,9 @@ public class FileControlsModel
/// 文件后缀.
/// </summary>
public string? fileExtension { get; set; }
/// <summary>
/// 文件名称.
/// </summary>
public string? fileName { get; set; }
}

View File

@@ -6,7 +6,8 @@ namespace JNPF.Common.Models.NPOI;
/// <summary>
/// Excel导出列名
/// 版 本V3.0.0
/// 版 权:拓通智联科技有限公司http://www.tuotong-tech.com
/// 版 权:引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2017.03.09.
/// </summary>
[SuppressSniffer]

View File

@@ -6,7 +6,8 @@ namespace JNPF.Common.Models.NPOI;
/// <summary>
/// Excel导出配置
/// 版 本V3.0.0
/// 版 权:拓通智联科技有限公司http://www.tuotong-tech.com
/// 版 权:引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2017.03.09.
/// </summary>
[SuppressSniffer]

View File

@@ -5,7 +5,8 @@ namespace JNPF.Common.Models.NPOI;
/// <summary>
/// Excel导出模板
/// 版 本V3.0.0
/// 版 权:拓通智联科技有限公司http://www.tuotong-tech.com
/// 版 权:引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组
/// 日 期2017.03.09.
/// </summary>
[SuppressSniffer]

View File

@@ -5,7 +5,7 @@ namespace JNPF.Common.Models.User
/// <summary>
/// 登录者信息
/// 版 本V3.2.0
/// 版 权:拓通智联科技有限公司http://www.tuotong-tech.com
/// 版 权:引迈信息技术有限公司https://www.jnpfsoft.com
/// 作 者JNPF开发平台组.
/// </summary>
[SuppressSniffer]
@@ -51,6 +51,11 @@ namespace JNPF.Common.Models.User
/// </summary>
public string organizeId { get; set; }
/// <summary>
/// 所属组织 Id 树.
/// </summary>
public List<string> organizeIdList { get; set; }
/// <summary>
/// 组织名称.
/// </summary>
@@ -225,6 +230,11 @@ namespace JNPF.Common.Models.User
/// </summary>
public string signImg { get; set; }
/// <summary>
/// 默认签名.
/// </summary>
public DateTime? changePasswordDate { get; set; }
/// <summary>
/// 系统集合.
/// </summary>

View File

@@ -53,6 +53,11 @@ public class UserOnlineModel
/// </summary>
public string token { get; set; }
/// <summary>
/// 单点登录标识.
/// </summary>
public string onlineTicket { get; set; }
/// <summary>
/// 是否移动端.
/// </summary>

View File

@@ -46,5 +46,10 @@
/// 流程类型.
/// </summary>
public int? type { get; set; }
/// <summary>
/// 所属流程名称.
/// </summary>
public string? flowName { get; set; }
}
}