package com.chinaztt.mes.basic.vo;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @ClassName StaffVO
|
* @Description TODO
|
* @Author luh
|
* @Date 2020/8/20 9:12
|
* @Version 1.0
|
**/
|
@Data
|
public class StaffVO {
|
private Long id;
|
private String divisionName;
|
private String staffNo;
|
private String staffName;
|
private String phone;
|
private String email;
|
private String post;
|
private LocalDateTime createTime;
|
private LocalDateTime updateTime;
|
private String createUser;
|
private String updateUser;
|
|
}
|