移动系统liao
17 小时以前 dfba57ee3b9db5b82baa9aec90ca9fb64e59e8b3
no message
5个文件已修改
1个文件已添加
72 ■■■■■ 已修改文件
Admin.NET/FZCZTB.NET.MD/ADPenalty.cs 62 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Admin.NET/FZCZTB.NET.MD/ADPenalty.cs
New file
@@ -0,0 +1,62 @@
//行政处罚
using Admin.NET.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FZCZTB.NET.MD;
/// <summary>
/// 行政处罚
/// </summary>
[SugarTable("FBD_ADPenalty","行政处罚")]
[IncreTable]
public class ADPenalty: basemodelNoId
{
    /// <summary>
    /// 投诉ID,主键
    /// </summary>
    [SugarColumn(IsPrimaryKey = true)]
    public Guid Id { get; set; }
    /// <summary>
    /// 决定日期
    /// </summary>
    [SugarColumn(ColumnDescription = "决定日期")]
    public DateTime DecisionDate { get; set; }
    /// <summary>
    /// 当事人信息,可能包含多个当事人,用逗号分隔
    /// </summary>
    [SugarColumn(ColumnDescription = "当事人信息", IsNullable =true, Length = 255)]
    public string? Parties { get; set; }
    /// <summary>
    /// 案由描述
    /// </summary>
    [SugarColumn(ColumnDescription = "案由描述", IsNullable = true, Length = int.MaxValue)]
    public string? CaseReason { get; set; }
    /// <summary>
    /// 处理决定内容
    /// </summary>
    [SugarColumn(ColumnDescription = "处理决定内容", IsNullable = true, Length = int.MaxValue)]
    public string? DisposalDecision { get; set; }
    /// <summary>
    /// 采购监督部门名称
    /// </summary>
    [SugarColumn(ColumnDescription = "采购监督部门名称", IsNullable = true ,Length=255)]
    public string? SupervisionDepartment { get; set; }
    /// <summary>
    /// 线上地址
    /// </summary>
    [SugarColumn(Length = 255, IsNullable = true, ColumnDescription = "线上地址")]
    public string Url { get; set; }
}
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Customer.cs
@@ -21,7 +21,7 @@
[SugarTable("FB_Customer", "客户表")]
[SugarIndex("index_{table}_A", nameof(Account), OrderByType.Asc)]
[SugarIndex("index_{table}_P", nameof(Phone), OrderByType.Asc)]
[IncreTable]
public partial class FB_Customer : EntityBaseTenant
{
    /// <summary>
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_CustomerRole.cs
@@ -14,7 +14,7 @@
namespace FZCZTB.NET.MD.CutomerMd;
[SugarTable("FB_CustomerRole", "客户菜单表")]
[IncreTable]
public class FB_CustomerRole : EntityBaseId
{
    /// <summary>
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_ExRoleMenu.cs
@@ -17,7 +17,7 @@
/// 系统租户菜单表
/// </summary>
[SugarTable("FB_TenantMenu", "系统租户菜单表")]
[IncreTable]
class FB_ExRoleMenu: EntityBaseId
{
    /// <summary>
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Menu.cs
@@ -20,7 +20,7 @@
[SugarTable("FB_Menu", "客户系统菜单表")]
[SugarIndex("index_{table}_T", nameof(Title), OrderByType.Asc)]
[SugarIndex("index_{table}_T2", nameof(Type), OrderByType.Asc)]
[IncreTable]
public class FB_Menu: EntityBaseTenantId
{
    /// <summary>
Admin.NET/FZCZTB.NET.MD/CutomerMd/FB_Role.cs
@@ -19,7 +19,7 @@
[SugarTable("FB_Role", "客户个性化角色")]
[SugarIndex("index_{table}_N", nameof(Name), OrderByType.Asc)]
[SugarIndex("index_{table}_C", nameof(Code), OrderByType.Asc)]
[IncreTable]
public class FB_Role : EntityBaseTenant
{
    /// <summary>