| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | |
| | | /** |
| | |
| | | * @date 2025-01-16 |
| | | */ |
| | | @TableName("non_coal_pay_category") |
| | | @ApiModel(value = "非煤缴费种类关联对象", description = "非煤缴费种类关联对象") |
| | | public class NonCoalPayCategory extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @NotNull(message = "参数不能为空") |
| | | @ApiModelProperty("非煤管理id") |
| | | private Long nonCoalPayId; |
| | | |
| | | /** |
| | | * 类别id |
| | | */ |
| | | @Excel(name = "类别id") |
| | | @NotNull(message = "类别不能为空") |
| | | @ApiModelProperty("类别id") |
| | | private Long categoryId; |
| | | |
| | | /** |
| | | * 类别1理论2实操 |
| | | */ |
| | | @Excel(name = "类别1理论2实操") |
| | | @NotNull(message = "类别类型不能为空") |
| | | @ApiModelProperty("类别类型id") |
| | | private Long categoryType; |
| | | |
| | | /** |