YtiotTEfAnalysis.hbm.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  3. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  4. <hibernate-mapping>
  5. <class name="cn.com.usky.iot.entity.YtiotTEfAnalysis" table="ytiot_t_ef_analysis" schema="ytIoT">
  6. <id name="id">
  7. <column name="id" sql-type="int(10) unsigned"/>
  8. </id>
  9. <property name="companyCode">
  10. <column name="company_code" sql-type="varchar(10)" length="10" not-null="true"/>
  11. </property>
  12. <property name="dataStatistics">
  13. <column name="data_statistics" sql-type="varchar(255)" length="255" not-null="true"/>
  14. </property>
  15. <property name="dispersionRate">
  16. <column name="dispersion_rate" sql-type="text" not-null="false"/>
  17. </property>
  18. <property name="electricalAging">
  19. <column name="electrical_aging" sql-type="text" not-null="false"/>
  20. </property>
  21. <property name="thermalAging">
  22. <column name="thermal_aging" sql-type="text" not-null="false"/>
  23. </property>
  24. <property name="projectSituation">
  25. <column name="project_situation" sql-type="text" not-null="false"/>
  26. </property>
  27. <property name="equipmentList">
  28. <column name="equipment_list" sql-type="text" not-null="false"/>
  29. </property>
  30. <property name="statisticalPeriod">
  31. <column name="statistical_period" sql-type="text" not-null="false"/>
  32. </property>
  33. <property name="creatTime">
  34. <column name="creat_time" sql-type="datetime" not-null="false"/>
  35. </property>
  36. <property name="generationTime">
  37. <column name="generation_time" sql-type="varchar(25)" length="25" not-null="false"/>
  38. </property>
  39. </class>
  40. </hibernate-mapping>