Compare commits

..

No commits in common. "60cd881d730c5b3eafac78e505ba2babd6e34ec3" and "85f4358d0d60d32212c7a7706888fafe7ff7bbcf" have entirely different histories.

3 changed files with 0 additions and 74 deletions

View File

@ -26,15 +26,6 @@ public class BizCompanyController {
private final BizCompanyService bizCompanyService; private final BizCompanyService bizCompanyService;
/**
*
*/
@PostMapping("/addStation")
public R<?> add(@RequestBody BizCompanyEntity entity) {
bizCompanyService.addStation(entity);
return R.success();
}
/** /**
* *
* *

View File

@ -50,16 +50,6 @@ public class BizCompanyService extends ServiceImpl<BizCompanyMapper, BizCompanyE
this.save(bizCompanyEntity); this.save(bizCompanyEntity);
} }
/**
*
*
* @param bizCompanyEntity
*/
public void addStation(BizCompanyEntity bizCompanyEntity) {
bizCompanyEntity.setStation(true);
this.save(bizCompanyEntity);
}
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public void add(AddBizCompanyParam addBizCompanyParam) { public void add(AddBizCompanyParam addBizCompanyParam) {
AppProperties.DefaultPlace defaultPlace = appProperties.getDefaultPlace(); AppProperties.DefaultPlace defaultPlace = appProperties.getDefaultPlace();

View File

@ -1,55 +0,0 @@
package com.njzscloud.supervisory.money.pojo.result;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
*
*/
@Getter
@Setter
@ToString
@Accessors(chain = true)
public class MoneyAccountResult {
/**
* Id
*/
private Long id;
/**
* Id;
*/
private Long userId;
/**
* Id;
*/
private Long stationId;
/**
*
*/
private BigDecimal money;
/**
*
*/
private LocalDateTime modifyTime;
/**
*
*/
private String name;
/**
* 12
*/
private Integer moneyType;
}