Files
SchoolManagementSystem_Backend/src/main/resources/ResultsTempEntity.xml
T
2024-10-27 02:37:41 +00:00

29 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<entity-mappings xmlns="https://jakarta.ee/xml/ns/persistence/orm"
version="3.0">
<entity class="com.sms.backend.smsBackend.entity.ResultsTempEntity">
<table name="results_temp" schema="public" catalog="school_mgt_database"/>
<attributes>
<id name="resitid">
<column name="resitid" precision="-1"/>
</id>
<basic name="courseid">
<column name="courseid" nullable="false"/>
</basic>
<basic name="studentit">
<column name="studentit" nullable="false"/>
</basic>
<basic name="session">
<column name="session" nullable="false"/>
</basic>
<basic name="score">
<column name="score" nullable="false" precision="-1"/>
</basic>
<basic name="datetime">
<column name="datetime" precision="-1"/>
</basic>
</attributes>
</entity>
</entity-mappings>