初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Domain" namespace="Domain">
<class name="RoomService" table="tb_RoomService">
<id name="ID" column="ID" type="long" unsaved-value="0">
<generator class="native" />
</id>
<property name="HostID" column="HostID" type="int" />
<property name="AlarmType" column="AlarmType" type="char" />
<property name="AlarmCode" column="AlarmCode" type="string" />
<property name="StartTime" column="StartTime" type="DateTime" />
<property name="Status" column="Status" type="bool" />
</class>
</hibernate-mapping>