| 123456789101112131415161718192021222324252627282930 |
- /**
- * 年级
- */
- Ext.define('school.model.Grade', {
- extend: 'school.model.Base',
- fields: [{
- name: 'grade_id', // id
- type: 'int'
- }, {
- name: 'grade_name', // 名称
- type: 'string'
- }, {
- name: 'grade_status', // 状态
- type: 'int'
- }, {
- name: 'grade_remarks', // 备注
- type: 'string'
- }, {
- name: 'grade_adress', // 地址
- type: 'string'
- }, {
- name: 'school_id', // 所属学校
- type: 'int'
- }],
- hasMany: {
- associatedName: 'classList',
- model: 'school.model.Class'
- }
- });
|