补全课时统计、课时费与课表源码,避免他人拉取后缺少包。
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.roomroot.jwgl.dto.ks;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 课时统计 / 课时费统计查询条件。
|
||||
*/
|
||||
@Data
|
||||
public class HourStatisticsQuery {
|
||||
|
||||
/** 学期年度(对应课时统计表.年份、学期.年度;空则默认当前学期) */
|
||||
private Integer nd;
|
||||
|
||||
/** 学期序号(与 nd 一起标识学期;课时统计表按年存储,查询按年度过滤) */
|
||||
private Integer xq;
|
||||
|
||||
/** 教员姓名(模糊匹配) */
|
||||
private String jyxm;
|
||||
|
||||
/** 教员编号(教员登录时强制为本人) */
|
||||
private String jybh;
|
||||
|
||||
/** 课时费标准编号(课时费统计可选;空则取最新一条方案) */
|
||||
private String ksfbzbh;
|
||||
}
|
||||
Reference in New Issue
Block a user