删无用代码
This commit is contained in:
parent
ac4dd93a16
commit
8d6e049697
|
|
@ -1,30 +1,30 @@
|
|||
package com.bonus.material.basic.domain;
|
||||
|
||||
import com.bonus.common.core.annotation.Excel;
|
||||
import com.bonus.common.core.web.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author ma_sh
|
||||
* @create 2024/10/14 15:29
|
||||
*/
|
||||
@Data
|
||||
public class BmUnitType extends BaseEntity {
|
||||
|
||||
private Integer isAll;
|
||||
|
||||
@ApiModelProperty(value = "主键id")
|
||||
private Long typeId;
|
||||
|
||||
@ApiModelProperty(value = "单位类型名称")
|
||||
@Excel(name = "单位类型")
|
||||
private String typeName;
|
||||
|
||||
@ApiModelProperty(value = "单位类型")
|
||||
private String dictType;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
}
|
||||
//package com.bonus.material.basic.domain;
|
||||
//
|
||||
//import com.bonus.common.core.annotation.Excel;
|
||||
//import com.bonus.common.core.web.domain.BaseEntity;
|
||||
//import io.swagger.annotations.ApiModelProperty;
|
||||
//import lombok.Data;
|
||||
//
|
||||
///**
|
||||
// * @Author ma_sh
|
||||
// * @create 2024/10/14 15:29
|
||||
// */
|
||||
//@Data
|
||||
//public class BmUnitType extends BaseEntity {
|
||||
//
|
||||
// private Integer isAll;
|
||||
//
|
||||
// @ApiModelProperty(value = "主键id")
|
||||
// private Long typeId;
|
||||
//
|
||||
// @ApiModelProperty(value = "单位类型名称")
|
||||
// @Excel(name = "单位类型")
|
||||
// private String typeName;
|
||||
//
|
||||
// @ApiModelProperty(value = "单位类型")
|
||||
// private String dictType;
|
||||
//
|
||||
// /** 删除标志(0代表存在 2代表删除) */
|
||||
// private String delFlag;
|
||||
//
|
||||
//}
|
||||
|
|
|
|||
Loading…
Reference in New Issue