| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.dto.DateQueryDto; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 财务管理--收入管理 |
| | |
| | | */ |
| | | @TableName(value = "account_income") |
| | | @Data |
| | | public class AccountIncome extends DateQueryDto implements Serializable { |
| | | public class AccountIncome extends DateQueryDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 收入类型(销售收入,服务收入,其他收入) |
| | | */ |
| | | @Excel(name = "收入类型",readConverterExp = "0=销售收入,1=服务收入,2=其他收入,3=回款收入") |
| | | @Excel(name = "收入类型", readConverterExp = "0=销售收入,1=服务收入,2=其他收入,3=回款收入") |
| | | @NotBlank(message = "收入类型不能为空!!") |
| | | private String incomeType; |
| | | |
| | |
| | | /** |
| | | * 收款方式(现金,支票,银行转账,其他) |
| | | */ |
| | | @Excel(name = "收款方式",readConverterExp = "0=现金,1=支票,2=银行转账,3=其他") |
| | | @Excel(name = "收款方式", readConverterExp = "0=现金,1=支票,2=银行转账,3=其他") |
| | | private String incomeMethod; |
| | | |
| | | /** |
| | | * 收款方式标签 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String incomeMethodLabel; |
| | | |
| | | /** |
| | | * payment_methods 字典编码集合(business_type 为空时) |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<String> paymentMethodList; |
| | | |
| | | /** |
| | | * receipt_payment_type 字典编码集合(business_type=1时) |
| | | */ |
| | | @TableField(exist = false) |
| | | private List<String> receiptPaymentMethodList; |
| | | |
| | | /** |
| | | * 发票号码 |
| | |
| | | private Date inputTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "创建用户") |
| | | @Schema(description = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @ApiModelProperty(value = "修改时间") |
| | | @Schema(description = "修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @ApiModelProperty(value = "修改用户") |
| | | @Schema(description = "修改用户") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @Schema(description = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |