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