lingling
2025-03-07 1b33c9c58b57bde6b60de30dfc8727132b92829d
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
using Elasticsearch.Net.Specification.IndicesApi;
using Nest;
 
namespace LifePayment.Domain.Shared
{
    public static class CustomeErrorMessage
    {
        public const string NotLoggedOn = "未登录";
 
        public const string IsNoExist = "不存在该条数据";
 
        public const string IsNotSetting = "保险产品未进行配置";
 
        public const string IsNoExistUser = "不存在该用户注册信息";
 
        public const string ExistsSameName = "存在相同名字";
 
        public const string BelongTypeShouldNotBeNull = "所属类别不可为空!";
 
        public const string NotFindSearchSetting = "未找到该条搜索配置记录!";
 
        public const string NotFindProduct = "未找到该产品!";
 
        public const string NotFindInformation = "未找到该资讯!";
 
        public const string AreaCodeHasExist = "区域码已存在";
 
        public const string AreaNameHasExist = "区域名已存在";
 
        public const string SetMealTitleHasExist = "套餐标题名已存在";
 
        public const string PowerSetNameHasExist = "该设置名字已存在";
 
        public const string InvoiceHeaderCompanyNameHasExist = "该发票抬头企业名字已存在";
 
        public const string InvoiceHeaderTaxNoHasExist = "该发票抬头税号已存在";
 
        public const string ParentIdNotExist = "上一级区域码不存在";
 
        public const string NotFindAreaCode = "未找到区域码!";
 
        public const string NotFindParkOrCompany = "未找到该园区/人资企业!";
 
        public const string NotFindHROfPark = "未找到该园区客户";
 
        public const string CertificationIsRequiredBeforeDisplay = "必须先认证才能展示!";
 
        public const string WrongTypeOfApplicationDisplay = "申请展示类型错误!";
 
        public const string CurrentUserIsNotFront = "当前用户不是客户端用户!";
 
        public const string NotFindAttentionSetting = "未找到该条关注记录!";
 
        public const string ThisAttentionNotBelongCurrentUser = "该条关注记录不属于当前用户!";
 
        public const string InputTypeWrong = "输入类型不正确!";
 
        public const string FootTypeWrong = "足迹类型不正确!";
 
        public const string HasNoInfoOfMyShow = "没有展示信息!";
 
        public const string HasNoInfoOfProduct = "没有产品信息!";
 
        public const string HasNoInfoOfInformation = "没有资讯信息!";
 
        public const string PictureShouldNotBeNull = "图片不能为空!";
 
        public const string RepeatAcceptance = "该申请已经受理成功,不可重复受理!";
 
        public const string PhoneHasExist = "该手机号已存在!";
 
        public const string NameRepeat = "该名字已存在!";
 
        public const string MustOnlyOneTopPic = "必须有且仅有一个设为封面!";
 
        public const string SequenceRequired = "请输入广告位序号!";
 
        public const string ThisHasBeAttention = "该用户已关注过该条记录!";
 
        public const string ThisPlatFormContactHasExist = "该类型的平台服务电话已存在!";
 
        public const string ThisPlatFormContactHasNotSetYet = "该类型的平台服务电话还未设置!";
 
        public const string CannotApplyAgain = "不能重复申请!";
 
        public const string NoSMStemplate = "没有该短信模板";
 
        public const string FailedSendingSMS = "短信发送失败";
 
        public const string OnlyOneShow = "一个账号只能创建一个展示!";
 
        public const string MustHasLeastOneProductType = "产品类型必须至少选择一个!";
 
        public const string MustHasLeastOneServiceType = "服务类型必须至少选择一个!";
 
        public const string MustHasLeastOneProductGood = "必须至少输入一个产品优势!";
 
        public const string MustHasLeastOnePlatformGood = "必须至少输入一个平台优势!";
 
        public const string MustHasLeastOneDemand = "需求类型和需求范围都必须至少选择一个!";
 
        public const string NotFoundDemand = "未找到该需求实展记录";
 
        public const string NotFoundTraining = "未找到该培训机构";
 
        public const string NotFoundLaborRecruitment = "未找到该劳务招聘记录";
 
        public const string NotFoundPlatform = "未找到该平台记录";
 
        public const string NotDeleteProduct = "该产品已存在申请合作,不可删除!";
 
        public const string CurrentStatusCannotBeOnShelf = "当前状态不能上架";
 
        public const string OnlyAuditingCanBeRevoke = "只有审核中才可以撤销";
 
        public const string MustAudit = "必须先审核通过!";
 
        public const string NotFoundSite = "未找到该站点信息";
 
        public const string HRAeraAtLeastOne = "企业所在区域至少有一条";
 
        public const string ThisAreaSiteIsExist = "该区域站点已配置过!";
 
        public const string ThisHRHasOppenedAccount = "该企业已开通过账号";
 
        public const string IsNotDelete = "该资讯已有客户申请合作,不可删除!";
 
        public const string NotFindLingGong = "未找到灵工产品!";
 
        public const string CanNotApplyOwnInformation = "不能申请自己的资讯!";
 
        public const string CanNotApplyOwnProduct = "不能申请自己的产品!";
 
        public const string CanNotApplyOwnLingGong = "不能申请自己的灵工平台!";
 
        public const string CanNotApplyOwnJob = "不能申请自己的劳务招聘!";
 
        public const string CanNotApplyOwnDispaly = "不能申请自己的需求实展!";
 
        public const string CanNotApplyOwnTraining = "不能申请自己的培训机构!";
 
        public const string CanNotApplyOwnParkOrHr = "不能申请自己的园区/企业合作!";
 
        public const string TrainingNameRepeat = "您已创建该名字的培训机构!";
 
        public const string SetMealNotExist = "该力量套餐设置不存在";
 
        public const string PayPlaceAnOrderIdNotExist = "该订单号不存在";
 
        public const string RequestFailed = "请求失败";
 
        public const string OrderAmountWrong = "订单金额不正确";
 
        public const string PaymentUnsuccessful = "支付未成功";
 
        public const string MostTenCompany = "最多允许添加10家企业";
 
        public const string InvoiceHeaderNotExist = "该发票抬头不存在";
 
        public const string OnlyNotInvoiceCanInvoice = "仅未开票状态订单可开票";
 
        public const string InvoiceRecordNotExist = "该发票记录不存在";
 
        public const string NotSupportCloudPlatformUser = "不能审核云平台账号";
 
        public const string InvoicesCanOnlyBeUploadedInWaitToAuditOrInvoicing = "仅待审核或者开票中可上传发票";
 
        public const string InvoiceDateCannoBeBlankWhenUploadingInvoice = "上传发票时,开票日期不可为空";
 
        public const string InvoiceAuditNoteWrong = "审核状态类型不正确";
 
        public const string SupplierRefundIsIllegal = "供人方返费最少一条,最多三条";
 
        public const string SupplierRefundSequenceIsIllegal = "供人方返费序号不正确";
 
        public const string AuditSubjectWrong = "审核主体不正确";
 
        public const string UserNotBeNull = "用户不能为空";
 
        public const string CurrentAuditIs = "当前审核已{0}";
 
        public const string CanNotSetAuditStatusTo = "无法将审核状态设置为{0}";
 
        public const string CheckRemarkNotBeNull = "审核备注不能为空";
 
        public const string AuditNotBeNull = "审核信息不能为空";
 
        public const string NotFundThis = "未找到该{0}";
 
        public const string ExistsSame = "存在相同的{0}";
 
        public const string LockKeyNotBeNull = "Key不能为空";
 
        public const string KeyNotBeNullWhenGetLock = "获取锁时,{0}不能为空";
 
        public const string KeyTypeWrongWhenGetLock = "获取锁时,Key类型错误";
 
        public const string NotImplementedWhenSometing = "{0}时,存在未实现的服务";
 
        public const string SometingNotBeNull = "{0}不能为空";
 
        public const string SometingError = "{0}异常";
 
        public const string SetSometingWrong = "设置的{0}不正确";
 
        public const string SometingCanNotSetToSometing = "无法将{0}设置为{1}";
 
        public const string DoNotOperateFrequently = "请勿频繁操作";
 
        public const string CurrentlySometing = "当前已{0}";
 
        public const string GetLockTimeout = "获取锁超时,请稍后再试";
 
        public const string SometingMustSometing = "{0}必须{1}";
 
        public const string NotSometingWhenSometing = "{0}时,无法{1}";
 
        public const string SometingWrongWhenSometing = "{0}时,{1}不正确";
 
        public const string SometingWrongOrSometing = "{0}错误或{1}";
 
        public const string ResetPasswordFail = "重置密码失败";
 
        public const string SometingNotSometing = "{0}不能{1}";
 
        public const string PasswordWrong = "密码错误";
 
        public const string NewPwdCurrentPwdNotRepeat = "新密码与当前密码不能重复";
 
        public const string SometingFail = "{0}失败";
 
        public const string SometingChanged = "{0}已发生变化,请{1}重新操作";
 
        public const string PhoneNumberRepeat = "手机号码重复,提交失败!";
 
        public const string NewPhoneNumberNotEqualsOldPhoneNumber = "不能重复绑定相同号码作为登录手机号,请更换手机号码重试!";
 
        public const string SocietyCreditCodeRepeatSaveFail = "统一社会信用代码重复,保存失败!";
 
        public const string PhoneNumberRepeatSaveFail = "手机号重复,保存失败!";
 
        public const string RegisterExistsPhoneNumber = "该手机号已注册,请去登录页登录";
 
        public const string CanNotLoginSign = "该账号不能在电子签客户端登录";
 
        public const string AccountNotExists = "账号不存在,请先注册账号";
 
        public const string AccountHasBindEmail = "当前账号已绑定邮箱";
 
        public const string NewBindEmailCantEqualsOld = "新邮箱不能和当前邮箱一致";
 
        public const string BindEmailExists = "该邮箱已绑定其它账号,请更换其它邮箱";
 
        public const string EnterpriseNameAndSocietyCreditCodeRepeat = "企业名称或统一社会信用代码已存在";
 
        public const string EnterpriseNameRepeat = "企业名称已存在";
 
        public const string MustAuditPassThenOnShelf = "必须审核通过后才能上架";
 
        public const string SecretWrong = "Secret错误";
 
        public const string InconsistentWrong = "{0}与{1}不一致";
 
        public const string NotOpenWalletAccount = "未开通该钱包账户";
 
        public const string NotFoundWalletAccountOpenInfo = "未找到钱包开户信息";
 
        public const string WalletBalanceInsufficient = "钱包余额不足";
 
        public const string TranAmountWrong = "操作金额错误";
 
        public const string InAcctNoNotEqualsOutAcctNo = "收款方账户与付款方账户不能一致";
 
        public const string FreezeMoneyError = "钱包冻结余额异常";
 
        public const string NotFoundSingleTransferInfo = "未找到转账申请信息";
 
        public const string NotFoundWalletTransactionDetailInfo = "未找到钱包交易明细信息";
 
        public const string NotFoundWalletDetailInfo = "未找到钱包扣款明细信息";
 
        public const string InOutAcctNoNotEqualsWalletMain = "收款方或付款方账户与钱包账户不一致";
 
        public const string WalletMainIsFreeze = "您的钱包已被冻结";
 
        public const string EnterpriseNameNotNull = "企业名称不允许为空";
 
        public const string CustomerNameNotNull = "人员名称不允许为空";
 
        public const string OpenWalletFirst = "钱包未开通,请先开通钱包";
    }
}