package com.chinaztt.mes.basic.vo;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @ClassName FactoryVO
|
* @Description TODO
|
* @Author luh
|
* @Date 2020/8/18 10:09
|
* @Version 1.0
|
**/
|
@Data
|
public class FactoryVO {
|
|
private Long id;
|
private String factoryName;
|
private String factoryNo;
|
private String city;
|
private String companyName;
|
private LocalDateTime createTime;
|
private LocalDateTime updateTime;
|
private String createUser;
|
private String updateUser;
|
|
}
|