1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.moral.api.pojo.ext.allocation;
|
| import com.moral.api.entity.Allocation;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
| import lombok.experimental.Accessors;
|
| /**
| * <p>
| * 交办单
| * </p>
| * deyt template generate
| * @author JI
| * @since 2023-09-25
| */
| @Data
| @EqualsAndHashCode(callSuper = false)
| @Accessors(chain = true)
| public class AllocationListExt extends Allocation {
|
| }
|
|