New file |
| | |
| | | //行政处罚 |
| | | 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; } |
| | | |
| | | } |
| | |
| | | [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> |
| | |
| | | |
| | | namespace FZCZTB.NET.MD.CutomerMd; |
| | | [SugarTable("FB_CustomerRole", "客户菜单表")] |
| | | [IncreTable] |
| | | |
| | | public class FB_CustomerRole : EntityBaseId |
| | | { |
| | | /// <summary> |
| | |
| | | /// 系统租户菜单表 |
| | | /// </summary> |
| | | [SugarTable("FB_TenantMenu", "系统租户菜单表")] |
| | | [IncreTable] |
| | | |
| | | class FB_ExRoleMenu: EntityBaseId |
| | | { |
| | | /// <summary> |
| | |
| | | [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> |
| | |
| | | [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> |