修改实体类

master
zzh 2024-07-31 23:23:58 +08:00
parent e1c4344796
commit 47760cc94c
2 changed files with 3 additions and 11 deletions

View File

@ -2,13 +2,6 @@
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="AliAccessStaticViaInstance" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliArrayNamingShouldHaveBracket" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliControlFlowStatementWithoutBraces" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliDeprecation" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliEqualsAvoidNull" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliLongLiteralsEndingWithLowercaseL" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliMissingOverrideAnnotation" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AliWrapperTypeEquality" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AlibabaAbstractClassShouldStartWithAbstractNaming" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AlibabaAbstractMethodOrInterfaceMethodMustUseJavadoc" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AlibabaAvoidApacheBeanUtilsCopy" enabled="true" level="WARNING" enabled_by_default="true" />
@ -63,6 +56,5 @@
<inspection_tool class="AlibabaUnsupportedExceptionWithModifyAsList" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AlibabaUseQuietReferenceNotation" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="AlibabaUseRightCaseForDateFormat" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="MapOrSetKeyShouldOverrideHashCodeEquals" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>

View File

@ -24,19 +24,19 @@ public class CustomerListReq {
/**
* /
*/
@Schema(name = "服务/客户名称",type = "String",description = "客户名称,为微服务中文名称")
@Schema(defaultValue = "客户名称1",type = "String",description = "客户名称,为微服务中文名称")
private String appName;
/**
* /
*/
@Schema(name = "服务/客户编码",type = "String",description = "客户名称,为微服务中文名称")
@Schema(defaultValue = "cusomer_code",type = "String",description = "客户名称,为微服务中文名称")
private String appCode;
/**
* sys_ys_no
*/
@Schema(name = "是否开启",type = "String",description = "用户状态,Y是开启,N是关闭")
@Schema(defaultValue = "Y",type = "String",description = "用户状态,Y是开启,N是关闭")
@IsSystemYseNo
private String status;