| | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | |
| | | */ |
| | | @TableName(value = "account_income") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class AccountIncome extends DateQueryDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 业务id |
| | | */ |
| | | private Long businessId; |
| | | |
| | | /** |
| | | * 业务类型 1-回款 2-借款 |
| | | */ |
| | | private Integer businessType; |
| | | |
| | | /** |
| | | * 收入日期 |
| | |
| | | /** |
| | | * 收入类型(销售收入,服务收入,其他收入) |
| | | */ |
| | | @Excel(name = "收入类型",readConverterExp = "0=销售收入,1=服务收入,2=其他收入") |
| | | @Excel(name = "收入类型",readConverterExp = "0=销售收入,1=服务收入,2=其他收入,3=回款收入") |
| | | @NotBlank(message = "收入类型不能为空!!") |
| | | private String incomeType; |
| | | |