You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
783 B
Java
20 lines
783 B
Java
|
1 month ago
|
package com.sztzjy.linkCommerce.entity.dto;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
public class StudentDemoSessionTicket {
|
||
|
|
private String ticket;
|
||
|
|
private Date expiresAt;
|
||
|
|
private String teachingClassId;
|
||
|
|
private String className;
|
||
|
|
|
||
|
|
public String getTicket() { return ticket; }
|
||
|
|
public void setTicket(String ticket) { this.ticket = ticket; }
|
||
|
|
public Date getExpiresAt() { return expiresAt; }
|
||
|
|
public void setExpiresAt(Date expiresAt) { this.expiresAt = expiresAt; }
|
||
|
|
public String getTeachingClassId() { return teachingClassId; }
|
||
|
|
public void setTeachingClassId(String teachingClassId) { this.teachingClassId = teachingClassId; }
|
||
|
|
public String getClassName() { return className; }
|
||
|
|
public void setClassName(String className) { this.className = className; }
|
||
|
|
}
|