ticket submit api

This commit is contained in:
Sola
2015-12-06 05:03:37 +08:00
parent 81a502e6cf
commit 5d38f3270f
11 changed files with 157 additions and 26 deletions

View 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";
}