AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.arj.g.vo;
 
import org.jeecg.modules.arj.entity.Head;
import org.jeecg.modules.arj.g.entity.C4Clean;
import lombok.Data;
 
import java.util.List;
 
/**
 * <p>
 * 冲床清洁记录
 * </p>
 *
 * @author hyy
 * @since 2023-03-17
 */
@Data
public class ChongClean {
    private Head head ;
    private List<C4Clean> c4CleanList ;
}