zhangherong
2025-07-03 1b5a723592ea63e5eec0bdeef7855b9c40e9df71
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package org.jeecg.modules.system.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * 用户产线
 *
 * @author: LiuS
 * @create: 2023-03-24 15:39
 */
@Data
@TableName("mdc_user_production")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="mdc_user_production对象", description="用户产线表")
public class MdcUserProduction implements Serializable {
 
    private static final long serialVersionUID = 108430837598974955L;
 
    /**
     * 主键id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private String id;
    /**
     * 用户id
     */
    private String userId;
    /**
     * 产线id
     */
    private String proId;
 
    public MdcUserProduction(String id, String userId, String proId) {
        super();
        this.id = id;
        this.userId = userId;
        this.proId = proId;
    }
 
    public MdcUserProduction(String id, String productionId) {
        this.userId = id;
        this.proId = productionId;
    }
}