mirror of
https://github.com/ZSCNetSupportDept/WechatTicketSystem.git
synced 2025-10-29 16:14:16 +08:00
ticket submit api
This commit is contained in:
20
src/main/java/love/sola/netsupport/sql/TableTicket.java
Normal file
20
src/main/java/love/sola/netsupport/sql/TableTicket.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package love.sola.netsupport.sql;
|
||||
|
||||
/**
|
||||
* ***********************************************
|
||||
* Created by Sola on 2015/12/6.
|
||||
* Don't modify this source without my agreement
|
||||
* ***********************************************
|
||||
*/
|
||||
public class TableTicket extends SQLCore {
|
||||
|
||||
public static final String COLUMN_ID = "id";
|
||||
public static final String COLUMN_SID = "sid";
|
||||
public static final String COLUMN_DESC = "description";
|
||||
public static final String COLUMN_SUBMIT_TIME = "submittime";
|
||||
public static final String COLUMN_REMARK = "remark";
|
||||
public static final String COLUMN_UPDATE_TIME = "updatetime";
|
||||
public static final String COLUMN_OPSID = "opsid";
|
||||
public static final String COLUMN_STATUS = "status";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user