package org.springblade.mdm.machinefile.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.base.BizEntity;
|
|
import java.util.Date;
|
|
/**
|
* 机床回传文件,已经接受的
|
*/
|
@Setter
|
@Getter
|
@TableName("mdm_machine_accepted_file")
|
public class MachineAcceptedFile extends BizEntity {
|
public static int STATUS_CREATED = 1;
|
public static int STATUS_EXPORTED = 2;
|
/**
|
* 文件名
|
*/
|
private String name;
|
|
/**
|
* 机床文件的id
|
*/
|
private Long machineFileId;
|
/**
|
* 导出时间
|
*/
|
private Date exportTime;
|
/**
|
* 对象存储文件名
|
*/
|
private String ossName;
|
|
/**
|
* 回传任务id
|
*/
|
private Long backTaskId;
|
}
|