新增 占桩订单相关接口

This commit is contained in:
Lemon
2023-08-18 10:15:56 +08:00
parent 128a2e76e3
commit 74af1bba60
11 changed files with 1170 additions and 808 deletions

View File

@@ -1,7 +1,24 @@
package com.jsowell.pile.dto;/**
* TODO
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 生成占桩订单DTO
*
* @author Lemon
* @Date 2023/8/18 9:00
* @author Lemon
*/public class GenerateOccupyOrderDTO {
*/
@Data
public class GenerateOccupyOrderDTO {
private String memberId;
/**
* 桩号
*/
private String pileSn;
/**
* 枪口号
*/
private String connectorCode;
}