/
anegorov
/
tasks
Обзор
Документация
Войти
/
anegorov
/
tasks
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
files/resources/src-model/model.xml
28 строк
1 KB
Andrey Egorov
Added docker and files
18 апр 2026, 09:10
18 апр 2026, 09:10
92cd5e5
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <model model-name="ds_tasklist" description="Список заявок" version="0.0.1-SNAPSHOT"> <enum name="TaskStatus"> <value name="OPEN"/> <value name="SHIPPING"/> <value name="DELIVERED"/> <value name="DONE"/> </enum> <class name="Person" is-abstract="false" embeddable="false" strategy="JOINED"> <property name="firstName" type="STRING" mandatory="true" length="254"/> <property name="lastName" type="STRING" mandatory="true" length="254"/> <property name="email" type="STRING" mandatory="false" length="254"/> </class> <class name="Location" is-abstract="false" embeddable="false" strategy="JOINED"> <property name="name" type="STRING" mandatory="true" length="254"/> <index unique="true"> <property name="name"/> </index> </class> <class name="Task" is-abstract="false" is-dictionary="false" embeddable="false" strategy="JOINED"> <property name="description" type="TEXT"/> <property name="dueDate" type="LOCALDATE" length="3"/> <property name="status" type="TaskStatus"/> <property name="timeStamp" type="LOCALDATETIME" length="3" default-value="now"/> <reference name="person" type="Person" parent="true"/> <reference name="location" type="Location" parent="true"/> </class> </model>