fhx
2024-05-06 4dfc90cd707e87200d83d68137a0188ac844c9a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hz.his.dto;
 
 
import com.hz.his.dto.common.DCommonDto;
import lombok.Data;
 
/**
 * 退款单
 **/
@Data
public class DRefundDto extends DCommonDto {
 
    private String shopId;
    private String sourceType;
    private Integer status;
    private String roleId;
 
}