master
parent
e78b9dcc76
commit
70ad26394c
@ -0,0 +1,11 @@ |
||||
package com.order.controller.business; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
@Controller |
||||
@RequestMapping(value="/orderDownload") |
||||
@Api(value="订单下载管理") |
||||
public class BsOrderDownloadController { |
||||
} |
@ -0,0 +1,32 @@ |
||||
package com.hfkj.sysenum.order; |
||||
|
||||
import lombok.Getter; |
||||
|
||||
@Getter |
||||
public enum OrderLogisticsStatusEnum { |
||||
|
||||
statusDELIVERING("派件中" , "DELIVERING"), |
||||
|
||||
statusTRANSPORT("运输中", "TRANSPORT"), |
||||
|
||||
statusAGENT_SIGN("已代签收", "AGENT_SIGN"), |
||||
|
||||
statusSIGN("已签收", "SIGN"), |
||||
|
||||
statusACCEPT("已揽收", "ACCEPT"), |
||||
|
||||
statusFAILED("包裹异常", "FAILED"), |
||||
|
||||
statusWAIT_ACCEPT("待揽收", "WAIT_ACCEPT"), |
||||
; |
||||
|
||||
private final String code; |
||||
|
||||
private final String name; |
||||
|
||||
|
||||
OrderLogisticsStatusEnum(String name, String code) { |
||||
this.code = code; |
||||
this.name = name; |
||||
} |
||||
} |
Loading…
Reference in new issue