| 12345678910111213141516171819202122 |
- /**
- * 成绩
- */
- Ext.define('school.model.Score', {
- extend: 'school.model.Base',
- fields: [{
- name: 'sd_stuNumber', // 学号
- type: 'string'
- }, {
- name: 'sd_stu', // 姓名
- type: 'string'
- }, {
- name: 'sd_subject',
- type: 'string'
- }, {
- name: 'sd_score',
- type: 'float'
- }, {
- name: 'sd_remark',
- type: 'string'
- }]
- });
|