派生自 projectDept/qhighschool

Administrator
2022-11-29 8c99e2d8b6c1e0d9cde6abbe80b4df75be19f6d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.qxueyou.scc.base.model;
 
/**
 * ×Ô¶¨ÒåÊÂÎñÒì³£
 * @author zhiyong
 *
 */
public class TransactException extends RuntimeException {
    
    /**
     * 
     */
    private static final long serialVersionUID = 1549313847632989095L;
 
    private Result result;
    
    public TransactException(Result result) {
        super();
        this.result = result;
    }
 
    public Result getResult() {
        return result;
    }
 
    public void setResult(Result result) {
        this.result = result;
    }
    
    
    
}