//
using System;
using JiShe.IoT.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
using Volo.Abp.EntityFrameworkCore;
#nullable disable
namespace JiShe.IoT.Migrations
{
[DbContext(typeof(IoTDbContext))]
partial class IoTDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql)
.HasAnnotation("ProductVersion", "10.0.2")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("JiShe.ServicePro.BasicManagement.UserRefreshTokens.UserRefreshToken", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("ExpirationTime")
.HasColumnType("timestamp with time zone")
.HasComment("过期时间");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("text")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsUsed")
.HasColumnType("boolean")
.HasComment("是否使用");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("RefreshToken")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("刷新token");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId");
b.Property("Token")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("character varying(1024)")
.HasComment("Token");
b.Property("UserId")
.HasColumnType("uuid")
.HasComment("用户id");
b.HasKey("Id");
b.HasIndex("RefreshToken");
b.ToTable("ServiceProUserRefreshTokens", null, t =>
{
t.HasComment("刷新Token");
});
});
modelBuilder.Entity("JiShe.ServicePro.CTWingManagement.CTWingAccount.CTWingAccountInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("AccountId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("账号ID");
b.Property("AccountName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("账号名称");
b.Property("AppId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("应用 ID");
b.Property("AppKey")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("应用 AppKey");
b.Property("AppSecret")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("应用 AppSecret");
b.Property("CommunicationAddress")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("通讯服务地址");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("PhoneNumber")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("手机号码");
b.Property("PlatformTenantId")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("平台租户ID");
b.Property("ProductCount")
.HasColumnType("integer");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex(new[] { "Id", "AccountId", "AccountName", "CreationTime" }, "IX_ServiceProCTWingAccountInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProCTWingAccountInfo", null, t =>
{
t.HasComment("CTWing账号信息");
});
});
modelBuilder.Entity("JiShe.ServicePro.CTWingManagement.CTWingProduct.CTWingPrivateProductInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("AccessType")
.HasColumnType("integer");
b.Property("AccountPhoneNumber")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("账户手机号");
b.Property("AuthType")
.HasColumnType("integer");
b.Property("CTWingAccountId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("账号ID");
b.Property("CommunicationAddress")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("通讯服务地址");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DataEncryption")
.HasColumnType("integer");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceCount")
.HasColumnType("integer");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FeatureAccesskey")
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("设备访问密钥");
b.Property("IoTPlatformProductId")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("产品ID");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsEnabled")
.HasColumnType("boolean")
.HasComment("是否启用");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("MasterKey")
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("OpenAPI 通信主密钥");
b.Property("NetworkType")
.HasColumnType("integer");
b.Property("NodeType")
.HasColumnType("integer");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("ProductDesc")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("必填,产品描述");
b.Property("ProductName")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("产品名称");
b.Property("ProductProtocol")
.HasColumnType("integer");
b.Property("ProductType")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("一级分类名");
b.Property("Protocol")
.HasMaxLength(20)
.HasColumnType("character varying(20)")
.HasComment("通讯协议");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("SecondaryType")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("二级分类名");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.Property("ThingModelFileId")
.HasColumnType("uuid")
.HasComment("物模型文件Id");
b.Property("ThingModelFileName")
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("物模型文件名称");
b.Property("ThirdType")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("三级分类名");
b.Property("TupDeviceModel")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("设备型号");
b.Property("TupIsThrough")
.HasColumnType("integer");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex(new[] { "Id", "IoTPlatformProductId", "ProductName", "CreationTime" }, "IX_ServiceProCTWingPrivateProductInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProCTWingPrivateProductInfo", null, t =>
{
t.HasComment("CTWing产品信息");
});
});
modelBuilder.Entity("JiShe.ServicePro.DataDictionaryManagement.DataDictionaries.Aggregates.DataDictionary", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("Code")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("Description")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("character varying(1024)");
b.Property("DisplayText")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("text")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId");
b.HasKey("Id");
b.ToTable("AbpDataDictionaries", null, t =>
{
t.HasComment("数据字典");
});
});
modelBuilder.Entity("JiShe.ServicePro.DataDictionaryManagement.DataDictionaries.Aggregates.DataDictionaryDetail", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("Code")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DataDictionaryId")
.HasColumnType("uuid");
b.Property("Description")
.HasMaxLength(1024)
.HasColumnType("character varying(1024)");
b.Property("DisplayText")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property("ExtendedAttribute")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property("IsEnabled")
.HasColumnType("boolean");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("Order")
.HasColumnType("integer");
b.HasKey("Id");
b.HasIndex("DataDictionaryId");
b.ToTable("AbpDataDictionaryDetails", null, t =>
{
t.HasComment("数据字典详情");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.DeviceInfos.DeviceFirmwareInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FirmwareFileId")
.HasColumnType("uuid")
.HasComment("固件文件Id");
b.Property("FirmwareFileName")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("固件文件名称");
b.Property("FirmwareHashCode")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("固件哈希值");
b.Property("FirmwareLength")
.HasColumnType("bigint");
b.Property("FirmwareVersion")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("固件版本");
b.Property("IoTPlatform")
.HasColumnType("integer")
.HasComment("物联网平台类型");
b.Property("IoTPlatformProductId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应的产品Id");
b.Property("IoTPlatformProductName")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("物联网平台中对应的产品名称");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsEnable")
.HasColumnType("boolean")
.HasComment("是否启用");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex("IoTPlatformProductId");
b.HasIndex(new[] { "Id", "IoTPlatformProductId", "FirmwareVersion", "CreationTime" }, "IX_ServiceProDeviceFirmwareInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProDeviceFirmwareInfo", null, t =>
{
t.HasComment("设备固件信息");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.DeviceInfos.DeviceManagementInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("AccountPhoneNumber")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("账户手机号");
b.Property("BusinessSystemDeviceDataId")
.HasColumnType("bigint")
.HasComment("业务系统设备数据Id");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceAddress")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasComment("设备地址");
b.Property("DeviceName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("设备名称");
b.Property("DeviceOnlineStatus")
.HasColumnType("integer")
.HasComment("设备在线状态");
b.Property("DeviceSource")
.HasColumnType("integer")
.HasComment("设备来源类型");
b.Property("DeviceThingModelDataId")
.HasColumnType("uuid")
.HasComment("设备物模型数据Id");
b.Property("DeviceType")
.HasColumnType("integer")
.HasComment("设备类型,与业务系统无关,主要区分是网关设备、直连设备");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FirmwareVersion")
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("固件版本");
b.Property("IoTPlatform")
.HasColumnType("integer")
.HasComment("物联网平台类型,默认没有指定");
b.Property("IoTPlatformAccountId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应的账号Id");
b.Property("IoTPlatformDeviceOpenInfo")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("物联网平台中对应的设备Id或者名称");
b.Property("IoTPlatformProductId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应的产品Id");
b.Property("IoTPlatformProductName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("物联网平台中对应的产品Name");
b.Property("IoTPlatformResponse")
.HasColumnType("text")
.HasComment("物联网平台返回的响应信息");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsNeedConfigDevicMdoel")
.HasColumnType("boolean")
.HasComment("是否需要配置设备模型");
b.Property("IsPlatformPushSuccess")
.HasColumnType("boolean")
.HasComment("物联网平台推送是否成功");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("LastOfflineTime")
.HasColumnType("timestamp with time zone")
.HasComment("最后离线时间");
b.Property("LastOnlineTime")
.HasColumnType("timestamp with time zone")
.HasComment("最后在线时间");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("PlatformPassword")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("物联网平台设备密码");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.Property("UpgradeDate")
.HasColumnType("timestamp with time zone")
.HasComment("升级日期");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex("DeviceAddress");
b.HasIndex(new[] { "Id", "DeviceName", "DeviceAddress", "IoTPlatformProductId", "CreationTime" }, "IX_ServiceProDeviceInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProDeviceInfo", null, t =>
{
t.HasComment("设备信息");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.DeviceInfos.DeviceUpgradeRecord", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceAddress")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("设备地址");
b.Property("DeviceName")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("设备名称");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FirmwareSignature")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("签名校验值");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("NowFirmwareVersion")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("当前固件版本");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("OldFirmwareVersion")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("旧的固件版本");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.Property("UpgradeDate")
.HasColumnType("timestamp with time zone")
.HasComment("升级日期");
b.Property("UpgradeDescription")
.IsRequired()
.HasMaxLength(512)
.HasColumnType("character varying(512)")
.HasComment("升级描述");
b.Property("UpgradeIdentifier")
.HasColumnType("bigint")
.HasComment("升级标识符号");
b.Property("UpgradeMessage")
.IsRequired()
.HasMaxLength(512)
.HasColumnType("character varying(512)")
.HasComment("升级信息");
b.Property("UpgradeResult")
.HasColumnType("integer")
.HasComment("升级结果");
b.Property("UpgradeSource")
.HasColumnType("integer")
.HasComment("升级来源");
b.Property("UpgradeStatus")
.HasColumnType("integer")
.HasComment("升级状态");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex("DeviceAddress");
b.HasIndex("UpgradeIdentifier")
.IsUnique();
b.HasIndex(new[] { "Id", "DeviceAddress", "UpgradeIdentifier", "NowFirmwareVersion", "CreationTime" }, "IX_ServiceProDeviceUpgradeRecord_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProDeviceUpgradeRecord", null, t =>
{
t.HasComment("设备升级记录");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.DeviceInfos.SubDeviceManagementInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("BusinessSystemSubDeviceDataId")
.HasColumnType("bigint")
.HasComment("业务系统子设备数据Id");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceAddress")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasComment("网关设备或直连设备地址");
b.Property("DeviceDataId")
.HasColumnType("uuid")
.HasComment("网关设备或直连设备数据Id");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("SubDeviceAddress")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasComment("子设备地址");
b.Property("SubDeviceBrandCode")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("子设备品牌编码");
b.Property("SubDeviceIndex")
.HasColumnType("integer")
.HasComment("子设备索引,抑或是主设备下唯一标识符、计量代码");
b.Property("SubDeviceName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("character varying(128)")
.HasComment("子设备名称");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex("DeviceAddress");
b.HasIndex("SubDeviceAddress");
b.HasIndex("SubDeviceIndex");
b.HasIndex(new[] { "Id", "DeviceAddress", "SubDeviceIndex", "SubDeviceAddress", "CreationTime" }, "IX_ServiceProSubDeviceManagementInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProSubDeviceManagementInfo", null, t =>
{
t.HasComment("子设备信息");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.ThingModelInfos.DeviceThingModelCommandInfo", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("CommandName")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("character varying(256)")
.HasComment("指令名称");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceThingModelId")
.HasColumnType("uuid")
.HasComment("设备端物模型Id");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("IoTPlatform")
.HasColumnType("integer")
.HasComment("物联网平台类型");
b.Property("IoTPlatformProductId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应的产品Id");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IssueCommand")
.IsRequired()
.HasMaxLength(512)
.HasColumnType("character varying(512)")
.HasComment("完整的单个下发指令");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("PropertyArray")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("character varying(1024)")
.HasComment("指令设备端物模型的属性名称集合,JSON格式字符串数组");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property("TenantId")
.HasColumnType("uuid")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.HasKey("Id");
b.HasIndex("CreationTime");
b.HasIndex("DeviceThingModelId");
b.HasIndex(new[] { "Id", "DeviceThingModelId", "IoTPlatformProductId", "CreationTime" }, "IX_ServiceProIoTPlatformThingModelInfo_IsNotUniqueKey")
.IsDescending();
b.ToTable("ServiceProDeviceThingModelCommandInfo", null, t =>
{
t.HasComment("设备端透传指令详情");
});
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.ThingModelInfos.DeviceThingModelManagement", b =>
{
b.Property("Id")
.HasColumnType("uuid");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("character varying(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("uuid")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("uuid")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("DeletionTime");
b.Property("DeviceModelName")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("设备端物模型名称");
b.Property("ExtraProperties")
.HasColumnType("text")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FunctionAnalysisFlag")
.HasColumnType("boolean")
.HasComment("函数解析标记,默认为false, 不能解析");
b.Property("FunctionScript")
.HasColumnType("text")
.HasComment("脚本函数体");
b.Property("IoTPlatform")
.HasColumnType("integer")
.HasComment("物联网平台类型,默认没有指定");
b.Property("IoTPlatformProductId")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("character varying(50)")
.HasComment("物联网平台中对应的产品Id");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("timestamp with time zone")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("uuid")
.HasColumnName("LastModifierId");
b.Property("OSACreatorId")
.HasColumnType("integer")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("integer")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("integer")
.HasComment("旧系统授权最后修改者Id");
b.Property("Remark")
.HasColumnType("text")
.HasComment("备注");
b.Property