PpsConstant.java
714 Bytes
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
33
34
35
36
37
package com.dili.titan.domain;
/**
*供应求购预售状态常量
*/
public class PpsConstant {
/**
* 状态:待审核
*/
public static final int STATUS_NEW = 1;
/**
* 状态:审核通过
*/
public static final int STATUS_PASS = 2;
/**
* 状态:审核失败
*/
public static final int STATUS_DENIED = 3;
/**
* 状态:过期
*/
public static final int STATUS_EXPIRE = 4;
/**
* 状态:删除
*/
public static final int STATUS_DEL = -1;
/**
* 来源:PC端
*/
public static final int SOURCES_PC = 1;
/**
* 来源:手机端
*/
public static final int SOURCES_MOBILE = 2;
}