jinpengyong
2023-11-14 d3b8905de283ea2e28c06f2c80f72397723b8d77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.moral.api.pojo.form.account;
 
import lombok.Data;
 
/**
 * @ClassName AccountDeleteRequest
 * @Description TODO
 * @Author 陈凯裕
 * @Date 2021/3/16 8:54
 * @Version TODO
 **/
@Data
public class AccountDeleteForm {
 
    private Integer accountId;
 
    public boolean valid(){
        if(accountId==null||accountId==0){
            return false;
        }
        return true;
    }
}