This commit is contained in:
@jyuhsin
2025-10-17 11:13:19 +08:00
parent a54d550796
commit 225ed25736
4 changed files with 26 additions and 7 deletions
@@ -25,10 +25,15 @@ public class LiteracyCourse extends LiteracySourceCourse implements Serializable
private String id;
@Column
@ColDefine(type = ColType.VARCHAR, width = 50)
@ColDefine(type = ColType.VARCHAR, width = 32)
@Comment("活动ID")
private String activityId;
@Column
@ColDefine(type = ColType.VARCHAR, width = 32)
@Comment("子活动ID")
private String courseId;
@Many(field = "courseId")
private List<LiteracyActivityCourse> courseTimeList;