补全课时统计、课时费与课表源码,避免他人拉取后缺少包。
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
package com.roomroot.jwgl.vo.ks;
|
||||
|
||||
import com.roomroot.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 课时统计 / 课时费统计行。
|
||||
*/
|
||||
@Data
|
||||
public class HourStatisticsVO {
|
||||
|
||||
@Excel(name = "教研室代号", sort = 1)
|
||||
private String jysdh;
|
||||
|
||||
@Excel(name = "教研室名称", sort = 2)
|
||||
private String jysmc;
|
||||
|
||||
@Excel(name = "教员编号", sort = 3)
|
||||
private String jybh;
|
||||
|
||||
@Excel(name = "教员姓名", sort = 4)
|
||||
private String jyxm;
|
||||
|
||||
@Excel(name = "职称", sort = 5)
|
||||
private String zc;
|
||||
|
||||
@Excel(name = "年份", sort = 6)
|
||||
private Integer nf;
|
||||
|
||||
@Excel(name = "上半年", sort = 7)
|
||||
private Double sbn;
|
||||
|
||||
@Excel(name = "下半年", sort = 8)
|
||||
private Double xbn;
|
||||
|
||||
@Excel(name = "总计", sort = 9)
|
||||
private Double zj;
|
||||
|
||||
@Excel(name = "标准课时量", sort = 10)
|
||||
private Double bzksl;
|
||||
|
||||
@Excel(name = "超课时", sort = 11)
|
||||
private Double cks;
|
||||
|
||||
@Excel(name = "计算过程", sort = 12, width = 28)
|
||||
private String jsgs;
|
||||
|
||||
@Excel(name = "结果", sort = 13)
|
||||
private Double jg;
|
||||
|
||||
@Excel(name = "课时费标准", sort = 14)
|
||||
private String ksfbzmc;
|
||||
|
||||
@Excel(name = "课时费单价", sort = 15)
|
||||
private Double ksfbz;
|
||||
|
||||
@Excel(name = "超量课时费单价", sort = 16)
|
||||
private Double clksfbz;
|
||||
}
|
||||
Reference in New Issue
Block a user