新增 后管财务中心运营商订单列表页

This commit is contained in:
Lemon
2023-07-06 17:38:30 +08:00
parent eb9e1fb0b1
commit 35efeb8993
11 changed files with 285 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
package com.jsowell.pile.vo.base;
import lombok.Data;
/**
* 运营商订单列表VO
*
* @author Lemon
* @Date 2023/7/6 16:12
*/
@Data
public class MerchantOrderInfoVO {
private String orderCode;
private String transactionCode;
private String orderStatus;
private String stationId;
private String stationName;
private String orderSource;
private String orderAmount;
private String orderSettleTime;
}