39 lines
677 B
Plaintext
39 lines
677 B
Plaintext
|
|
package com.sercurityControl.proteam.domain.vo;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.constant.annotation.Excel;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 每日报岗
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class JobApplication extends TablePage {
|
||
|
|
|
||
|
|
@Excel(name = "地市")
|
||
|
|
private String cityName;
|
||
|
|
|
||
|
|
private String id;
|
||
|
|
|
||
|
|
@Excel(name = "登录名")
|
||
|
|
private String loginName;
|
||
|
|
|
||
|
|
@Excel(name = "报岗时间")
|
||
|
|
private String createTime;
|
||
|
|
|
||
|
|
@Excel(name = "报岗日期")
|
||
|
|
private String curryDay;
|
||
|
|
|
||
|
|
private String userId;
|
||
|
|
|
||
|
|
private String isSup;
|
||
|
|
|
||
|
|
private String status;
|
||
|
|
|
||
|
|
private String orgId;
|
||
|
|
|
||
|
|
private String startTime;
|
||
|
|
|
||
|
|
private String endTime;
|
||
|
|
|
||
|
|
}
|