yangys
2025-09-19 b0d0191a88912b352385349461b500a4964d693b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
 
}