Score.js 416 B

12345678910111213141516171819202122
  1. /**
  2. * 成绩
  3. */
  4. Ext.define('school.model.Score', {
  5. extend: 'school.model.Base',
  6. fields: [{
  7. name: 'sd_stuNumber', // 学号
  8. type: 'string'
  9. }, {
  10. name: 'sd_stu', // 姓名
  11. type: 'string'
  12. }, {
  13. name: 'sd_subject',
  14. type: 'string'
  15. }, {
  16. name: 'sd_score',
  17. type: 'float'
  18. }, {
  19. name: 'sd_remark',
  20. type: 'string'
  21. }]
  22. });