06 2022 档案

摘要://增加一个字段,默认为空 alter table user add COLUMN new1 VARCHAR(20) DEFAULT NULL; //增加一个字段,默认不能为空 alter table user add COLUMN new2 VARCHAR(20) NOT NULL;begin; 阅读全文
posted @ 2022-06-20 18:50 小※兽 阅读(1568) 评论(0) 推荐(0)
摘要:IPage<ContractSynopsisVo> findContractList(@Param("toPage") IPage<ContractListConditionDto> toPage, @Param("dto") ContractListConditionDto contractLis 阅读全文
posted @ 2022-06-18 10:33 小※兽 阅读(299) 评论(0) 推荐(0)
摘要:for (int i = codeBegin; i <= codeEnd; i++) { ContractCodeUsage contractCodeUsage = new ContractCodeUsage(); BeanUtils.copyProperties(ruleUpdateDto, co 阅读全文
posted @ 2022-06-17 08:39 小※兽 阅读(18) 评论(0) 推荐(0)
摘要:public IPage<ContractCodeRuleVo> listAll(ContractCodeRuleFindDto findDto, ContractCodeRuleSearchDto contractCodeRuleSearchDto) { IPage<ContractCodeRul 阅读全文
posted @ 2022-06-16 16:52 小※兽 阅读(45) 评论(0) 推荐(0)
摘要:@SuppressWarnings("deprecation") @Configuration public class CrossConfiguration extends WebMvcConfigurerAdapter { @Bean public WebMvcConfigurer corsCo 阅读全文
posted @ 2022-06-09 10:28 小※兽 阅读(70) 评论(0) 推荐(0)