电话呼出日志优化

This commit is contained in:
俞扬
2023-08-16 13:05:40 +08:00
parent bf127453be
commit 1f025f0d5d
4 changed files with 49 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
package com.cool.store.dto.log;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.SuperBuilder;
/**
* @Author: young.yu
* @Date: 2023-08-16 11:41
* @Description:
*/
@Data
@SuperBuilder
public class CallUpLogDTO extends LogBasicDTO{
private String transNo;
}