派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
package com.qxueyou.scc.admin.classes.model;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.Table;
import javax.persistence.Transient;
 
import org.hibernate.annotations.CollectionId;
import org.hibernate.annotations.GenericGenerator;
import org.hibernate.annotations.Type;
import org.hibernate.annotations.Where;
import org.springframework.format.annotation.DateTimeFormat;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.qxueyou.scc.base.model.ITrace;
import com.qxueyou.scc.teach.live.model.MediaVideoLive;
import com.qxueyou.scc.teach.subject.model.Subject;
 
/**
 * The persistent class for the org_class database table.
 * 
 */
@Entity
@Table(name = "cls_class")
public class ClsClass implements Serializable, ITrace {
    /**
     * UID
     */
    private static final long serialVersionUID = 5971007065116777117L;
    
    /** ÃæÊÚ */
    public static final String CLASS_FACE = "FACE_TO_FACE";
    /** ÍøÂç */
    public static final String CLASS_NETWORK = "NETWORK";
 
    /** ÓÐÖ±²¥ */
    public static final int HAVE_LIVE = 1;
    
    /** ÎÞÖ±²¥ */
    public static final int NOT_HAVE_LIVE = 0;
 
    /** ÓÐÊÓÆµ */
    public static final int HAVE_VIDEO = 1;
    /** ÎÞÊÓÆµ */
    public static final int NOT_HAVE_VIDEO = 0;
 
    /** Óн²Òå */
    public static final int HAVE_HANDOUT = 1;
    /** ÎÞ½²Òå */
    public static final int NOT_HAVE_HANDOUT = 0;
 
    /** ÓÐÍÆ¼ö½±Àø */
    public static final int HAVE_AWARD = 1;
    /** ÎÞÍÆ¼ö½±Àø */
    public static final int NOT_HAVE_AWARD = 0;
 
    /** ÏûÏ¢´¦ÀíÒµÎñÀàÐÍ£º·¢ËÍÏûÏ¢ */
    public static final String MSG_ACTION_TYPE_SEND = "send_sms";
    /** ÏûÏ¢´¦ÀíÒµÎñÀàÐÍ£ºÐ½¨°à¼¶ */
    public static final String MSG_ACTION_TYPE_ADD = "add_Class";
    /** ÏûÏ¢´¦ÀíÒµÎñÀàÐÍ£º¸´Öư༶ */
    public static final String MSG_ACTION_TYPE_COPY = "copy_Class";
 
    /** °à¼¶½ø¶È£º±¨Ãû */
    public static final String CLASS_PROGRESS_START = "±¨Ãû";
    /** °à¼¶½ø¶È£ºÑ§Ï° */
    public static final String CLASS_PROGRESS_STUDY = "ѧϰ";
    /** °à¼¶½ø¶È£º½áÊø */
    public static final String CLASS_PROGRESS_END = "½áÊø";
 
    @Id
    @GeneratedValue(generator = "hibernate-uuid")
    @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
    @Column(name = "CLASS_ID", unique = true, nullable = false, length = 32)
    private String classId;
 
    @Column(name = "CLASS_CHARGER", length = 50)
    private String classCharger;
 
    @Column(name = "CLASS_CHARGER_ID", length = 32)
    private String classChargerId;
 
    @Column(name = "CODE", length = 50)
    private String code;
 
    @Column(name = "COLLEGE_COURSE_ID", length = 32)
    private String collegeCourseId;
 
    @Column(name = "COLLEGE_COURSE_NAME", length = 255)
    private String collegeCourseName;
 
    @Column(name = "CREATE_ID", nullable = false, length = 32)
    @JsonIgnore
    private String createId;
 
    @Column(name = "CREATE_TIME", nullable = false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonIgnore
    private Date createTime;
 
    @Column(name = "CREATOR", nullable = false, length = 100)
    @JsonIgnore
    private String creator;
 
    @Column(name = "DELETE_FLAG", nullable = false)
    @JsonIgnore
    private boolean deleteFlag;
 
    @Column(name = "NAME", length = 255)
    private String name;
 
    @Column(name = "FULL_TEXT", length = 4096)
    private String fullText;
 
    @Column(name = "PROGRESS", length = 255)
    private String progress;
 
    @Column(name = "ADDRESS", length = 255)
    private String address;
 
    @Column(name = "ADDRESS_ID", length = 255)
    private String addressId;
 
    @Column(name = "ARRANGEMENT", length = 255)
    private String arrangement;
 
    /** °à¼¶ÓÅÊÆ */
    @Column(name = "ADVANTAGE", length = 255)
    private String advantage;
 
    @Column(name = "PRICE", precision = 10, scale = 2)
    private BigDecimal price;
 
    @Column(name = "START_TIME", nullable = false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
    private Date startTime;
 
    @Column(name = "END_TIME")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
    private Date endTime;
 
    /** µ±Ç°Òѱ¨ÃûѧÉúÈËÊý */
    @Column(name = "STUDENT_COUNT")
    private int studentCount;
 
    @Column(name = "RECOMMEND", nullable = false)
    private boolean recommend;
 
    @Column(name = "IMG_PATH", length = 255)
    private String imgPath;
 
    @Column(name = "UPDATE_ID", length = 32)
    @JsonIgnore
    private String updateId;
 
    @Column(name = "UPDATE_TIME", nullable = false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonIgnore
    private Date updateTime;
 
    @Column(name = "UPDATOR", length = 100)
    @JsonIgnore
    private String updator;
 
    /** ÊÇ·ñÍÆ¹ã false£º²»Íƹã true£ºÍƹã */
    @Column(name = "EXTENDED")
    private boolean extended;
 
    @Column(name = "CLASS_TYPES", length = 100)
    private String classTypes;
 
    @Column(name = "DISCOUNT", precision = 10, scale = 2)
    private BigDecimal discount;
 
    @Column(name = "DISPRICE", precision = 10, scale = 2)
    private BigDecimal disprice;
 
    @Column(name = "STUDY_TIME", precision = 10, scale = 2)
    private BigDecimal studyTime;
 
    @Column(name = "SCORE", precision = 10, scale = 2)
    private BigDecimal score;
 
    /** Ñ§Éú×ÜÊý ¼Æ»®ÕÐÉúÈËÊý,ÓÃÓÚ»ú¹¹ Ö¸¶¨ */
    @Column(name = "STU_ALL_COUNT")
    private BigInteger stuAllCount;
 
    @Column(name = "COMMENT_COUNT")
    private BigInteger commentCount;
 
    @Column(name = "POINTER", length = 255)
    private String pointer;
 
    /*** µã»÷´ÎÊý **/
    @Column(name = "CLICK_NUM", precision = 11, scale = 0)
    private BigDecimal clickNum;
 
    /*** Ê¡·Ý **/
    @Column(name = "PROVINCE", length = 255)
    private String province;
 
    /*** ³ÇÊР**/
    @Column(name = "CITY", length = 255)
    private String city;
 
    /*** ÇøÓò **/
    @Column(name = "REGION", length = 255)
    private String region;
 
    /*** ÊÇ·ñÖö¥ **/
    @Column(name = "TOP_FLAG", length = 255)
    private Boolean topFlag;
 
    /*** ·½Ê½ **/
    @Column(name = "MODE", length = 255)
    private String mode;
 
    /*** ÉÌÆ·ID **/
    @Column(name = "GOOD_ID", length = 32)
    private String goodId;
 
    /*** ²úÆ·ID **/
    @Column(name = "PRODUCT_ID", length = 255)
    private String productId;
 
    /*** »ú¹¹ID **/
    @Column(name = "ORG_ID", length = 32)
    private String orgId;
 
    /*** ÊÇ·ñÓÐÖ±²¥ **/
    @Column(name = "HAVE_LIVE", length = 1)
    private Integer haveLive;
 
    /*** ÊÇ·ñÓÐÊÓÆµ **/
    @Column(name = "HAVE_VIDEO", length = 1)
    private Integer haveVideo;
 
    /*** ÊÇ·ñÓн²Òå **/
    @Column(name = "HAVE_HANDOUT", length = 1)
    private Integer haveHandout;
 
    /*** ¾­¶È **/
    @Column(name = "LONGITUDE_X", length = 32)
    private String logitudeX;
 
    /*** Î³¶È **/
    @Column(name = "LATITUDE_Y", length = 32)
    private String latitudeY;
 
    /*** ¸¶¿îÈËÊý **/
    @Column(name = "PAYMENT_NUM", length = 11)
    private BigInteger paymentNum;
 
    /*** ÊÇ·ñÓÐÍÆ¼ö½±Àø **/
    @Column(name = "HAVA_AWARD", length = 32)
    private Integer haveAward;
 
    @Transient
    private String content;
 
    @Column(name = "COURSE_ID", length = 4096)
    private String courseId;
 
    @Transient
    private String courseName;
 
    @Transient
    private String orgName;
 
    @Transient
    private String orgShortName;
 
    // °à¼¶Òý¼ö·Ñ
    @Transient
    private BigDecimal referFee;
 
    /** ¼¤»îÈËÊý **/
    @Transient
    private Integer registCount;
 
    // ============================ÐÂÌí¼Ó×Ö¶Î=================================
    /** ÊÇ·ñÓÐѧÉú¼Ó°àÉóÅú */
 
    @Column(name = "NEED_JOIN_AUDIT", nullable = false)
    private Boolean needJoinAudit;
 
    /** °à¼¶±àÂë */
    @Column(name = "CLASS_NUMBER", nullable = false)
    private String classNumber;
 
    /** ÊÇ·ñÓÐÐèҪѧÉúÍ˰àÉóÅú */
    @Column(name = "NEED_QUIT_AUDIT", nullable = false)
    private Boolean needQuitAudit;
 
    /** Íê³ÉÁ·Ï°ÊÇ·ñÏÔʾ´ð°¸ */
    @Column(name = "SHOU_ANALYSIS_AFTER_EXER", nullable = false)
    private Boolean showAnalysisAfterExer;
 
    /** ÊÇ·ñÔÊÐíÖØ¸´Á·Ï° */
    @Column(name = "CAN_MULTI_EXER", nullable = false)
    private Boolean canMultiExer;
 
    /** ÊÇ·ñ¿ªÍ¨°à¼¶ÂÛ̳ */
    @Column(name = "NEED_FORUM", nullable = false)
    private Boolean needForum;
 
    /** °à¼¶ÀÏʦ */
    @Column(name = "TEACHER_ID", length = 32)
    private String teacherId;
    
    @ManyToMany(fetch = FetchType.LAZY, cascade = CascadeType.REFRESH)
    @JoinTable(name = "CLS_CLASS_RE_SUBJECT", joinColumns = { 
            @JoinColumn(name = "CLASS_ID") }, 
            inverseJoinColumns = { @JoinColumn(name = "SUBJECT_ID") })
    @GeneratedValue(generator = "hibernate-uuid")
    @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
    @CollectionId(
                columns = @Column(name="CLS_RE_SUBJECT_ID"), 
                type=@Type(type="string"), 
                generator = "hibernate-uuid"
            )
    @Where(clause="DELETE_FLAG=0")
    private List<Subject> subjects = new ArrayList<>();
    
    
    @ManyToMany(fetch = FetchType.LAZY, mappedBy = "classes")
    @JsonIgnore
    private List<MediaVideoLive> videoLives;
    
 
    public String getTeacherId() {
        return teacherId;
    }
 
    public void setTeacherId(String teacherId) {
        this.teacherId = teacherId;
    }
 
    public String getAddressId() {
        return addressId;
    }
 
    public void setAddressId(String addressId) {
        this.addressId = addressId;
    }
 
    public Integer getRegistCount() {
        return registCount;
    }
 
    public void setRegistCount(Integer registCount) {
        this.registCount = registCount;
    }
 
    public Integer getSignUpCount() {
        return this.studentCount;
    }
 
    public BigDecimal getReferFee() {
        return referFee;
    }
 
    public void setReferFee(BigDecimal referFee) {
        this.referFee = referFee;
    }
 
    public String getClassId() {
        return this.classId;
    }
 
    public String getOrgId() {
        return orgId;
    }
 
    public void setOrgId(String orgId) {
        this.orgId = orgId;
    }
 
    public void setClassId(String classId) {
        this.classId = classId;
    }
 
    public String getClassCharger() {
        return this.classCharger;
    }
 
    public void setClassCharger(String classCharger) {
        this.classCharger = classCharger;
    }
 
    public String getClassChargerId() {
        return this.classChargerId;
    }
 
    public void setClassChargerId(String classChargerId) {
        this.classChargerId = classChargerId;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getCreateId() {
        return this.createId;
    }
 
    public void setCreateId(String createId) {
        this.createId = createId;
    }
 
    public Date getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCreator() {
        return this.creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
    public boolean getDeleteFlag() {
        return this.deleteFlag;
    }
 
    public void setDeleteFlag(boolean deleteFlag) {
        this.deleteFlag = deleteFlag;
    }
 
    public String getName() {
        return this.name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public BigDecimal getPrice() {
        return this.price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public Date getStartTime() {
        return this.startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public int getStudentCount() {
        return this.studentCount;
    }
 
    public void setStudentCount(int studentCount) {
        this.studentCount = studentCount;
    }
 
    public String getUpdateId() {
        return this.updateId;
    }
 
    public void setUpdateId(String updateId) {
        this.updateId = updateId;
    }
 
    public Date getUpdateTime() {
        return this.updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getUpdator() {
        return this.updator;
    }
 
    public void setUpdator(String updator) {
        this.updator = updator;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getProgress() {
        return progress;
    }
 
    public void setProgress(String progress) {
        this.progress = progress;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public boolean getRecommend() {
        return recommend;
    }
 
    public void setRecommend(boolean recommend) {
        this.recommend = recommend;
    }
 
    public String getImgPath() {
        return imgPath;
    }
 
    public void setImgPath(String imgPath) {
        this.imgPath = imgPath;
    }
 
    public boolean getExtended() {
        return extended;
    }
 
    public void setExtended(boolean extended) {
        this.extended = extended;
    }
 
    public String getClassTypes() {
        return classTypes;
    }
 
    public void setClassTypes(String classTypes) {
        this.classTypes = classTypes;
    }
 
    public BigDecimal getDiscount() {
        return discount;
    }
 
    public void setDiscount(BigDecimal discount) {
        this.discount = discount;
    }
 
    public BigDecimal getDisprice() {
        return disprice;
    }
 
    public void setDisprice(BigDecimal disprice) {
        this.disprice = disprice;
    }
 
    public BigDecimal getStudyTime() {
        return studyTime;
    }
 
    public void setStudyTime(BigDecimal studyTime) {
        this.studyTime = studyTime;
    }
 
    public BigDecimal getScore() {
        return score;
    }
 
    public void setScore(BigDecimal score) {
        this.score = score;
    }
 
    public BigInteger getStuAllCount() {
        return stuAllCount;
    }
 
    public void setStuAllCount(BigInteger stuAllCount) {
        this.stuAllCount = stuAllCount;
    }
 
    public BigInteger getCommentCount() {
        return commentCount;
    }
 
    public void setCommentCount(BigInteger commentCount) {
        this.commentCount = commentCount;
    }
 
    public String getPointer() {
        return pointer;
    }
 
    public void setPointer(String pointer) {
        this.pointer = pointer;
    }
 
    public String getCollegeCourseId() {
        return collegeCourseId;
    }
 
    public void setCollegeCourseId(String collegeCourseId) {
        this.collegeCourseId = collegeCourseId;
    }
 
    public String getCollegeCourseName() {
        return collegeCourseName;
    }
 
    public void setCollegeCourseName(String collegeCourseName) {
        this.collegeCourseName = collegeCourseName;
    }
 
    public String getCourseId() {
        return courseId;
    }
 
    public void setCourseId(String courseId) {
        this.courseId = courseId;
    }
 
    public String getCourseName() {
        return courseName;
    }
 
    public void setCourseName(String courseName) {
        this.courseName = courseName;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getArrangement() {
        return arrangement;
    }
 
    public void setArrangement(String arrangement) {
        this.arrangement = arrangement;
    }
 
    public String getAdvantage() {
        return advantage;
    }
 
    public void setAdvantage(String advantage) {
        this.advantage = advantage;
    }
 
    public BigDecimal getClickNum() {
        return clickNum;
    }
 
    public void setClickNum(BigDecimal clickNum) {
        this.clickNum = clickNum;
    }
 
    public String getProvince() {
        return province;
    }
 
    public void setProvince(String province) {
        this.province = province;
    }
 
    public String getCity() {
        return city;
    }
 
    public void setCity(String city) {
        this.city = city;
    }
 
    public String getRegion() {
        return region;
    }
 
    public void setRegion(String region) {
        this.region = region;
    }
 
    public Boolean getTopFlag() {
        return topFlag;
    }
 
    public void setTopFlag(Boolean topFlag) {
        this.topFlag = topFlag;
    }
 
    public String getMode() {
        return mode;
    }
 
    public void setMode(String mode) {
        this.mode = mode;
    }
 
    public String getGoodId() {
        return goodId;
    }
 
    public void setGoodId(String goodId) {
        this.goodId = goodId;
    }
 
    public String getProductId() {
        return productId;
    }
 
    public void setProductId(String productId) {
        this.productId = productId;
    }
 
    public String getOrgName() {
        return orgName;
    }
 
    public void setOrgName(String orgName) {
        this.orgName = orgName;
    }
 
    /**
     * @return the haveLive
     */
    public Integer getHaveLive() {
        return haveLive;
    }
 
    /**
     * @param haveLive
     *            the haveLive to set
     */
    public void setHaveLive(Integer haveLive) {
        this.haveLive = haveLive;
    }
 
    /**
     * @return the haveVideo
     */
    public Integer getHaveVideo() {
        return haveVideo;
    }
 
    /**
     * @param haveVideo
     *            the haveVideo to set
     */
    public void setHaveVideo(Integer haveVideo) {
        this.haveVideo = haveVideo;
    }
 
    /**
     * @return the haveHandout
     */
    public Integer getHaveHandout() {
        return haveHandout;
    }
 
    /**
     * @param haveHandout
     *            the haveHandout to set
     */
    public void setHaveHandout(Integer haveHandout) {
        this.haveHandout = haveHandout;
    }
 
    /**
     * @return the logitudeX
     */
    public String getLogitudeX() {
        return logitudeX;
    }
 
    /**
     * @param logitudeX
     *            the logitudeX to set
     */
    public void setLogitudeX(String logitudeX) {
        this.logitudeX = logitudeX;
    }
 
    /**
     * @return the latitudeY
     */
    public String getLatitudeY() {
        return latitudeY;
    }
 
    /**
     * @param latitudeY
     *            the latitudeY to set
     */
    public void setLatitudeY(String latitudeY) {
        this.latitudeY = latitudeY;
    }
 
    /**
     * @return the paymentNum
     */
    public BigInteger getPaymentNum() {
        return paymentNum;
    }
 
    /**
     * @param paymentNum
     *            the paymentNum to set
     */
    public void setPaymentNum(BigInteger paymentNum) {
        this.paymentNum = paymentNum;
    }
 
    /**
     * @return the haveAward
     */
    public Integer getHaveAward() {
        return haveAward;
    }
 
    /**
     * @param haveAward
     *            the haveAward to set
     */
    public void setHaveAward(int haveAward) {
        this.haveAward = haveAward;
    }
 
    public String getOrgShortName() {
        return orgShortName;
    }
 
    public void setOrgShortName(String orgShortName) {
        this.orgShortName = orgShortName;
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((classId == null) ? 0 : classId.hashCode());
        return result;
    }
 
    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
 
        ClsClass other = (ClsClass) obj;
        if (classId == null) {
            if (other.classId != null) {
                return false;
            }
        } else if (!classId.equals(other.classId)) {
            return false;
        }
        return true;
    }
 
    public String getFullText() {
        return fullText;
    }
 
    public void setFullText(String fullText) {
        this.fullText = fullText;
    }
 
    public String getClassNumber() {
        return classNumber;
    }
 
    public void setClassNumber(String classNumber) {
        this.classNumber = classNumber;
    }
 
    public void setHaveAward(Integer haveAward) {
        this.haveAward = haveAward;
    }
 
    public Boolean getNeedJoinAudit() {
        return needJoinAudit;
    }
 
    public void setNeedJoinAudit(Boolean needJoinAudit) {
        this.needJoinAudit = needJoinAudit;
    }
 
    public Boolean getNeedQuitAudit() {
        return needQuitAudit;
    }
 
    public void setNeedQuitAudit(Boolean needQuitAudit) {
        this.needQuitAudit = needQuitAudit;
    }
 
    public Boolean getShowAnalysisAfterExer() {
        return showAnalysisAfterExer;
    }
 
    public void setShowAnalysisAfterExer(Boolean showAnalysisAfterExer) {
        this.showAnalysisAfterExer = showAnalysisAfterExer;
    }
 
    public Boolean getCanMultiExer() {
        return canMultiExer;
    }
 
    public void setCanMultiExer(Boolean canMultiExer) {
        this.canMultiExer = canMultiExer;
    }
 
    public Boolean getNeedForum() {
        return needForum;
    }
 
    public void setNeedForum(Boolean needForum) {
        this.needForum = needForum;
    }
 
    public List<Subject> getSubjects() {
        return subjects;
    }
 
    public List<MediaVideoLive> getVideoLives() {
        return videoLives;
    }
 
    public void setVideoLives(List<MediaVideoLive> videoLives) {
        this.videoLives = videoLives;
    }
 
}