陈战涛
2023-05-09 b3ae531ee3b12fa191dc0aa656957bc00ef8ae4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.fzzy.async.fzzy35.entity;
 
import lombok.AllArgsConstructor;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@AllArgsConstructor
public class DepotKey implements Serializable {
        private String id;
        private String companyId;
        public DepotKey(){
            super();
        }
    }