You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
395 lines
15 KiB
395 lines
15 KiB
///-----------------------------------------------------------------------
|
|
/// <copyright file="BLWording.cs" company="Origtek">
|
|
/// 程式代號: BLWording
|
|
/// 程式名稱: BLWording
|
|
/// 程式說明:
|
|
/// 起始作者: Nelson
|
|
/// 起始日期: 2016/09/03 17:03:37
|
|
/// 最新修改人: Hercules
|
|
/// 最新修日期: 2017/05/16 00:34:38
|
|
/// </copyright>
|
|
///-----------------------------------------------------------------------
|
|
#region 程式異動記錄
|
|
/// xx.YYYY/MM/DD VER AUTHOR COMMENTS(說明修改的內容)
|
|
/// 01.2016/09/08 1.000 Hercules 避免欄位值過大(RV.141)
|
|
/// 02.2016/09/26 1.001 John 處理密碼加密和密碼五項原則邏輯部分(RV.484)
|
|
/// 03.2016/10/04 1.002 Hercules For Phase2 Develop(RV.574)
|
|
/// 04.2016/10/20 1.003 Rexxar.eng ftp maintain trigger(RV.922)
|
|
/// 05.2016/10/21 1.004 Justin.liu 更正我的最愛讀取與修改時讀取獨立的Table(RV.946)
|
|
/// 06.2016/11/08 1.005 Rexxar.eng profile(RV.1309)
|
|
/// 07.2016/11/09 1.006 John 添加公告參數配置(RV.1349)
|
|
/// 08.2016/11/16 1.007 John 修改問題追蹤691,689,686,482 問題(RV.1465)
|
|
/// 09.2016/11/21 1.008 John 撰寫信息廣播程式
|
|
/// [WHAT]修改加密元件(RV.1524)
|
|
/// 10.2016/11/30 1.009 Justin.liu 修復系統設定參數沒有被調用到的BUG
|
|
/// 限制每位使用者只能有N位角色,如超過此參數 就不得新增角色的限制(RV.1690)
|
|
/// 11.2016/12/02 1.010 Justin.liu 有些系統設定可以放在LocalStorage裡面 Login的時候刷新(RV.1764)
|
|
/// 12.2016/12/03 1.011 Hercules 1. 前端EDU機制
|
|
/// 2. Util增加CreateParametersSelect輔助產生參數下拉式(RV.1788)
|
|
/// 13.2016/12/03 1.012 Hercules getAddListCommand 增加檢核機制(RV.1794)
|
|
/// 14.2016/12/03 1.013 Hercules 修改TriggerSwitchManage - 加入刪除 continue(RV.1796)
|
|
/// 15.2016/12/04 1.014 Hercules 修改TriggerSwitchManage - 加入修改(RV.1798)
|
|
/// 16.2017/01/13 1.015 Justin.liu 匯入的時間人員部門 與 匯出只顯示某些欄位 以及匯入筆數顯示 提供(RV.2545)
|
|
/// 17.2017/03/09 1.016 Hercules Commit DB LOCK底層(RV.3065)
|
|
/// 18.2017/03/13 1.017 Hercules 聯詠半成品(進出)料號調整 匯出條件(RV.3117)
|
|
/// 19.2017/03/23 1.018 Justin.liu Erp_Ms_Lot_Size_Maint 功能修改(RV.3308)
|
|
/// 20.2017/04/07 1.019 Hercules BUG: AD_SSO沒有我的最愛,AD_SSO中沒有做favorites的Workaround(RV.3526)
|
|
/// 21.2017/04/12 1.020 Hercules Crystal Report merge(RV.3627)
|
|
/// 22.2017/05/01 1.021 Hercules 傳參數到RPT中(RV.3937)
|
|
/// 23.2017/05/11 1.022 Hercules LBP - InitParameters(RV.4235)
|
|
/// 24.2017/05/11 1.023 Hercules 加入Folder使用(RV.4249)
|
|
/// 25.2017/05/13 1.024 Hercules Attach Mail(RV.4277)
|
|
/// 26.2017/05/15 1.025 Hercules 檔案上傳 獨立成Helper(RV.4293)
|
|
#endregion
|
|
|
|
|
|
namespace MonumentDefine
|
|
{
|
|
/// <summary>
|
|
/// 類別名稱:BLWording
|
|
/// 類別說明:
|
|
/// 起始作者:
|
|
/// 起始日期:
|
|
/// 最新修改人:
|
|
/// 最新修改日:
|
|
/// </summary>
|
|
public static class BLWording
|
|
{
|
|
public const string TOKEN_EXP_MINUTE = "TOKEN_EXP_MINUTE";
|
|
|
|
|
|
public const string TOKENMAP = "TOKENMAP";
|
|
public const string ERROR_MAILLIST = "ERROR_MAILLIST";
|
|
|
|
/// 類別成員、類別屬性說明:WHEREDATA
|
|
/// </summary>
|
|
public const string WHEREDATA = "wheredata";
|
|
public const string FULLTEXT_PATTERN = "fulltext_pattern";
|
|
|
|
/// 類別成員、類別屬性說明:WHEREDATA
|
|
/// </summary>
|
|
public const string ORDERDATA = "orderdata";
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public const string UPDATEDIF = "updatedif";
|
|
|
|
public const string MESSAGE = "message";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:USERID
|
|
/// </summary>
|
|
public const string USER_ID = "user_id";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:UPDATETYPE
|
|
/// </summary>
|
|
public const string UPDATETYPE = "updatetype";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:TOKEN
|
|
/// </summary>
|
|
public const string TOKEN = "token";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SUBJECT
|
|
/// </summary>
|
|
public const string SUBJECT = "subject";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:BODY
|
|
/// </summary>
|
|
public const string BODY = "body";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SETITEMKEY
|
|
/// </summary>
|
|
public const string SETITEMKEY = "setitemkey";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SESSION_USER_ID
|
|
/// </summary>
|
|
public const string SESSION_USER = "sessionuser";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SEARCHMODE_RECORDIDX
|
|
/// </summary>
|
|
public const string SEARCHMODE_RECORDIDX = "recordidx";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SEARCHMODE_NUMPERGAGE
|
|
/// </summary>
|
|
public const string SEARCHMODE_NUMPERGAGE = "numperpage";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SEARCHMODE_PAGEIDX
|
|
/// </summary>
|
|
public const string SEARCHMODE_PAGEIDX = "pageidx";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:SEARCHMODE
|
|
/// </summary>
|
|
public const string SEARCHMODE = "searchmode";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:RESULT
|
|
/// </summary>
|
|
public const string RESULT = "result";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:REQUEST_IS_NULL
|
|
/// </summary>
|
|
public const string REQUEST_IS_NULL = "REQUEST, MOUDLUE OR TYPE IS NULL";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:QRY_MASTER
|
|
/// </summary>
|
|
public const string QRY_MASTER = "qry_master";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:CPY_MASTER
|
|
/// </summary>
|
|
public const string CPY_MASTER = "cpy_master";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:RECORD
|
|
/// </summary>
|
|
public const string RECORD = "Record";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:QRY_DETAIL
|
|
/// </summary>
|
|
public const string QRY_DETAIL = "qry_detail";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:PROGRAMID
|
|
/// </summary>
|
|
public const string PROGRAMID = "program_id";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:PATH_UPLOAD
|
|
/// </summary>
|
|
public const string PATH_UPLOAD = "UPLOAD_PATH";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:PATH_TEMPUPLOAD
|
|
/// </summary>
|
|
public const string PATH_TEMPUPLOAD = "TEMP_PATH";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ORDERCOL
|
|
/// </summary>
|
|
public const string ORDERCOL = "ordercol";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:NAME
|
|
/// </summary>
|
|
public const string NAME = "name";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ATTACHFILE_SPLITER
|
|
/// </summary>
|
|
// 類別成員、類別屬性說明:File Upload
|
|
public const string MODULEID = "module_id";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ITEMS
|
|
/// </summary>
|
|
public const string ITEMS = "items";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:DEPTID
|
|
/// </summary>
|
|
public const string DEPT_ID = "dept_id";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:MAILADDRESS 郵件信箱
|
|
/// </summary>
|
|
public const string MAILADDRESS = "mailaddress";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:LISTCOLUMNS
|
|
/// </summary>
|
|
public const string LISTCOLUMNS = "columns";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:FILEPATH
|
|
/// </summary>
|
|
public const string FILEPATH = "filepath";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:FILES
|
|
/// </summary>
|
|
public const string FILES = "files";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ENTITYS
|
|
/// </summary>
|
|
public const string ENTITYS = "entitys";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:DEL_MASTER
|
|
/// </summary>
|
|
public const string DEL_MASTER = "del_master";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:DEL_DETAIL
|
|
/// </summary>
|
|
public const string DEL_DETAIL = "del_detail";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:DATA
|
|
/// </summary>
|
|
public const string DATA = "data";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:BLOCKS
|
|
/// </summary>
|
|
public const string BLOCKS = "blocks";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:COVERT_FAIL
|
|
/// </summary>
|
|
public const string COVERT_FAIL = "CONVERT FAIL";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:CMDENTITYTYPE
|
|
/// </summary>
|
|
public const string CMDENTITYTYPE = "entitytype";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:CMDBACKUPENTITYTYPE
|
|
/// </summary>
|
|
public const string CMDBACKUPENTITYTYPE = "backupentitytype";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:CATEGORY
|
|
/// </summary>
|
|
public const string CATEGORY = "category";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:BSTRING
|
|
/// </summary>
|
|
public const string BSTRING = "bstring";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:REMOVECOUNT
|
|
/// </summary>
|
|
public const string REMOVECOUNT = "removecount";
|
|
|
|
public const string AFFECTCOUNT = "affectcount";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:UPD_MASTER
|
|
/// </summary>
|
|
public const string UPD_MASTER = "upd_master";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ADD_MASTER
|
|
/// </summary>
|
|
public const string ADD_MASTER = "add_master";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:PRIVILEGES
|
|
/// </summary>
|
|
public const string PRIVILEGES = "privileges";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:TIME_DATA
|
|
/// </summary>
|
|
public const string TIME_DATA = "time_data";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:TIME_DATA
|
|
/// </summary>
|
|
public const string START_DATE = "start_date";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:TIME_DATA
|
|
/// </summary>
|
|
public const string END_DATE = "end_date";
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ROLE
|
|
/// </summary>
|
|
public const string ROLE = "role";
|
|
|
|
/// <summary>
|
|
/// Table 預設欄位 uid
|
|
/// </summary>
|
|
public const string UID = "uid";
|
|
/// <summary>
|
|
/// 會員在臉書應用程式理的ID
|
|
/// </summary>
|
|
public const string ASID = "asid";
|
|
public const string USER_NAME = "user_name";
|
|
public const string CREATE_ORG_UID = "create_org_uid";
|
|
public const string CREATE_USER_UID = "create_user_uid";
|
|
public const string CREATE_DATE = "create_date";
|
|
|
|
public const string UPDATE_ORG_UID = "update_org_uid";
|
|
public const string UPDATE_USER_UID = "update_user_uid";
|
|
public const string UPDATE_DATE = "update_date";
|
|
|
|
public const string STATUS_FLAG = "status_flag";
|
|
public const string SYSTEM_FLAG = "system_flag";
|
|
public const int STATUS_FLAG_ON = 1;
|
|
public const int STATUS_FLAG_OFF = 0;
|
|
|
|
public const int SYSTEM_FLAG_ON = 1;
|
|
public const int SYSTEM_FLAG_OFF = 0;
|
|
public const int SYSTEM_FLAG_RUNTIME = 2;
|
|
|
|
|
|
public const string COLUMN_FILTER = "columnfilter";
|
|
public const string CREATEUID = "creating";
|
|
public const string ERROR_DESCRIPTION = "error_description";
|
|
|
|
public const string LOG_ACTION_NAME_UPDATESQL = "updatesql";
|
|
public const string LOG_ACTION_NAME_INSERTSQL = "insertsql";
|
|
public const string LOG_ACTION_NAME_DELETESQL = "deletesql";
|
|
|
|
#region
|
|
|
|
/// </summary>
|
|
public const string ORDER_ASC = "ASC";
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:ORDER_DESC
|
|
/// </summary>
|
|
public const string ORDER_DESC = "DESC";
|
|
|
|
public const string FILE_NOT_EXIST = "msg.file_not_exist";
|
|
|
|
public const string FAVORITE = "favorite";
|
|
|
|
|
|
#endregion
|
|
|
|
public const string STATUS = "status";
|
|
public const string VALUE = "value";
|
|
public const string DISPLAY = "display";
|
|
public const string ROLE_ID = "role_id";
|
|
public const string PARENT = "parent";
|
|
public const string CODE = "code";
|
|
public const string ENTERCODE = "entercode";
|
|
public const string AUTOENTER = "autoenter";
|
|
public const string ORGANIZATION = "organization";
|
|
|
|
|
|
public const string LOG_LEVEL = "log_level";
|
|
|
|
public const string CREATE_USER_NAME = "create_user_name";
|
|
|
|
|
|
public const string BACKEND_VERSION = "backendversion";
|
|
|
|
public const string TIMERANGE_START = "timerange_start";
|
|
public const string TIMERANGE_END = "timerange_end";
|
|
|
|
public const string SYSTEMSETTING_SYSTEMERRORMAIL = "SYSTEMERROR_MAIL";
|
|
public const string REPORTLOG_MAILLIST = "REPORTLOG_MAILLIST";
|
|
public const string REPORTLOG_ACTIVETIME = "REPORTLOG_ACTIVETIME";
|
|
public const string ADINTELOG_MAILLIST = "ADINTELOG_MAILLIST";
|
|
public const string ADINTELOG_ACTIVETIME = "ADINTELOG_ACTIVETIME";
|
|
|
|
public const string RPTLOGMAIL_LASTTIME = "RPTLOGMAIL_LASTTIME";
|
|
public const string ADINTEMAIL_LASTTIME = "ADINTEMAIL_LASTTIME";
|
|
|
|
public const string SYSTEM_LAUNCH = "SYSTEM_LAUNCH";
|
|
public const string LOG_RANGE = "LOG_RANGE";
|
|
|
|
// FIX: handle_item => group_item(origin value of handle_item) + department_item(null), Only fix SWIFT(Group)
|
|
public const string REPORT_FLAG_GROUP = "REPORT_FLAG_GROUP";
|
|
|
|
public const string PAGES_TOKEN = "PAGES_TOKEN";
|
|
|
|
public const string ADMIN_NAME = "ADMIN_NAME";
|
|
|
|
public const string QRY_MAX_NUM = "qry_max_num";
|
|
public const string QRY_PAGE_IDX = "qry_page_idx";
|
|
public const string QRY_PAGE_NUM = "qry_page_num";
|
|
public const string QRY_PAGE_ORDER_COLUMNS = "qry_page_order_columns";
|
|
|
|
public const string APP_ID = "app_id";
|
|
#region 媒體類型
|
|
/// <summary>
|
|
/// 媒體類型
|
|
/// </summary>
|
|
public class MediaType
|
|
{
|
|
// 臉書得到
|
|
public const string Video = "video";
|
|
// 上傳
|
|
public const string Photo = "photo";
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|