You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
668 B
27 lines
668 B
1 year ago
|
package cn.teammodel.model.entity.weekDuty;
|
||
|
|
||
|
import cn.teammodel.model.entity.BaseItem;
|
||
|
import com.azure.spring.data.cosmos.core.mapping.Container;
|
||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||
|
import lombok.Data;
|
||
|
import lombok.EqualsAndHashCode;
|
||
|
|
||
|
/**
|
||
|
* 值周对象是班级,对应一个评价的指标
|
||
|
* @author winter
|
||
|
* @create 2023-12-29 15:53
|
||
|
*/
|
||
|
@EqualsAndHashCode(callSuper = true)
|
||
|
@Container(containerName = "School")
|
||
|
@Data
|
||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||
|
public class WeekDuty extends BaseItem {
|
||
|
private String classId;
|
||
|
private String className;
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
private String note;
|
||
|
private Long createTime;
|
||
|
}
|