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.allocationextension;
|
| import com.moral.api.entity.AllocationExtension;
| 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 AllocationExtensionListExt extends AllocationExtension {
|
| }
|
|