feat:trans
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.cool.store.request.store;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* @Auther zx_szh
|
||||
* @Date 2026/4/15 17:47
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class TransRequest {
|
||||
|
||||
@ApiModelProperty("分账单ID")
|
||||
@NotNull
|
||||
private Long id;
|
||||
|
||||
@ApiModelProperty("备注")
|
||||
@NotBlank(message = "备注不能为空")
|
||||
private String remark;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user