From 068fc7f2e81178e55fa191a13709af64b1a163f6 Mon Sep 17 00:00:00 2001 From: EricsHu <hrr145632> Date: 星期一, 05 十二月 2022 14:27:43 +0800 Subject: [PATCH] 处理编码 --- src/main/java/com/qxueyou/scc/school/model/SchClassSubject.java | 36 ++++++++++++++++++------------------ 1 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/main/java/com/qxueyou/scc/school/model/SchClassSubject.java b/src/main/java/com/qxueyou/scc/school/model/SchClassSubject.java index 92b4853..5501e86 100644 --- a/src/main/java/com/qxueyou/scc/school/model/SchClassSubject.java +++ b/src/main/java/com/qxueyou/scc/school/model/SchClassSubject.java @@ -26,7 +26,7 @@ import com.qxueyou.scc.base.model.ITrace; /** - * 班级课程 + * 鐝骇璇剧▼ * * @author ody.yuan * @@ -37,11 +37,11 @@ public class SchClassSubject implements Serializable, ITrace { private static final long serialVersionUID = 1L; - /** 1 必修 2 选修 **/ + /** 1 蹇呬慨 2 閫変慨 **/ public static final short SUBJECT_TYPE_REQUIRED = 1; public static final short SUBJECT_TYPE_ELECTIVE = 2; - /** 1 考试 2 考查 **/ + /** 1 鑰冭瘯 2 鑰冩煡 **/ public static final short SUBJECT_EXAMINATION_REQUIRED = 1; public static final short SUBJECT_EXAMINATION_EXAMINE = 2; @Id @@ -50,52 +50,52 @@ @Column(name = "CLASS_SUBJECT_ID", unique = true, nullable = false, length = 32) private String classSubjectId; - /** 名称 */ + /** 鍚嶇О */ @Column(name = "NAME", length = 150) private String name; - /** 全称 */ + /** 鍏ㄧО */ @Column(name = "FULL_NAME", length = 255) private String fullName; - /** 编码 */ + /** 缂栫爜 */ @Column(name = "CODE", length = 64) private String code; - /** 排序顺序号 */ + /** 鎺掑簭椤哄簭鍙� */ @Column(name = "ORDER_NUM") private int orderNum; - /** 内容简介 */ + /** 鍐呭绠�浠� */ @Column(name = "CONTENT", length = 255) private String content; - /** 学分 */ + /** 瀛﹀垎 */ @Column(name = "CREDIT", precision = 4, scale = 2) private BigDecimal credit; - /** 课程类别(必修、选修) */ + /** 璇剧▼绫诲埆锛堝繀淇�侀�変慨锛� */ @Column(name = "TYPE") private short type; - /** 考试形式(考试、考查) */ + /** 鑰冭瘯褰㈠紡锛堣�冭瘯銆佽�冩煡锛� */ @Column(name = "EXAMINATION_FORM") private short examinationForm; - /** 机构拷贝专业ID,非高校拷贝科目ID */ + /** 鏈烘瀯鎷疯礉涓撲笟ID锛岄潪楂樻牎鎷疯礉绉戠洰ID */ @Column(name = "COURSE_ID", length = 32) private String courseId; - /** 班级ID */ + /** 鐝骇ID */ @Column(name = "CLASS_ID", length = 32) private String classId; - /** 原始公共课程ID */ + /** 鍘熷鍏叡璇剧▼ID */ @Column(name = "ORIG_SUBJECT_ID", length = 32) private String origSubjectId; - /** 班级复制:复制课程保存原始班级的课程ID */ + /** 鐝骇澶嶅埗锛氬鍒惰绋嬩繚瀛樺師濮嬬彮绾х殑璇剧▼ID */ @Column(name = "ORIG_CLASS_SUBJECT_ID", length = 32) private String origClassSubjectId; @@ -129,12 +129,12 @@ @JsonIgnore private String updator; - /** 学生课表 */ + /** 瀛︾敓璇捐〃 */ @OneToMany(fetch = FetchType.LAZY, mappedBy = "subject") @JsonIgnore public List<SchStudentSchedule> studentSchedules; - /** 班级课表 */ + /** 鐝骇璇捐〃 */ @OneToMany(fetch = FetchType.LAZY, mappedBy = "subject") @JsonIgnore public List<SchClassSchedule> classSchedules; @@ -142,7 +142,7 @@ @Transient public List<SchClassSchedule> lstClassSchedules; - /** 签到类型 */ + /** 绛惧埌绫诲瀷 */ @Transient private Short signType; -- Gitblit v1.8.0