初始化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

11
Domain/AppRoom.hbm.xml Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Domain" namespace="Domain">
<class name="AppRoom" table="tb_AppRoom">
<id name="ID" column="ID" type="int" unsaved-value="0">
<generator class="native" />
</id>
<property name="MAC" column="MAC" type="string" />
<property name="RoomNumber" column="RoomNumber" type="string" />
<property name="HotelID" column="HotelID" type="int" />
</class>
</hibernate-mapping>