liyong
8 天以前 86fc2148b726357e42d8072f7f2f3641411cca5f
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
package com.ruoyi.production.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@TableName("product_process_route_item")
public class ProductProcessRouteItem {
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "工艺路线id")
    private Long routeId;
 
    @ApiModelProperty(value = "工序id")
    private Long processId;
 
    @ApiModelProperty(value ="产品id")
    private Long productModelId;
 
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @TableField(fill = FieldFill.INSERT)
    @ApiModelProperty(value = "创建时间")
    private LocalDateTime createTime;
    @ApiModelProperty(value = "更新时间")
    @TableField(fill = FieldFill.UPDATE)
    private LocalDateTime updateTime;
 
}