This commit is contained in:
dute7liang
2024-01-21 19:55:39 +08:00
parent e36ad030e4
commit 5c9218ea83
18 changed files with 222 additions and 76 deletions

View File

@@ -40,11 +40,11 @@ public class DynamicImages implements Serializable {
/**
* 宽度
*/
private Long width;
private Integer width;
/**
* 高度
*/
private Long height;
private Integer height;
/**
* 图片大小
*/

View File

@@ -6,7 +6,6 @@ import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
@@ -38,20 +37,6 @@ public class Union implements Serializable {
* 是否开启提成
*/
private Boolean enableRate;
/**
* 全部人数
*/
private Long allNum;
/**
* 在分成的人数
*/
@Deprecated
private Long inDivideNum;
/**
* 不分成人数
*/
@Deprecated
private Long notDivideNum;
private LocalDateTime createTime;