当前季度和当月招聘会详情
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.ruoyi.cms.domain.rc;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 每日招聘会数量VO
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("每日招聘会数量")
|
||||
public class JobFairDailyCountVO {
|
||||
|
||||
@ApiModelProperty("日期 (yyyy-MM-dd)")
|
||||
private String date;
|
||||
|
||||
@ApiModelProperty("招聘会数量")
|
||||
private Integer count;
|
||||
}
|
||||
Reference in New Issue
Block a user