| | |
| | | import java.io.UnsupportedEncodingException; |
| | | import java.util.Date; |
| | | import java.math.BigDecimal; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | |
| | | @Excel(name = "父节点编号", width = 15) |
| | | @ApiModelProperty(value = "父节点编号") |
| | | private String parentId; |
| | | /**父节点仓库编号*/ |
| | | @TableField(exist = false) |
| | | private String parentWarehouseId; |
| | | /**父节点仓库名称*/ |
| | | @TableField(exist = false) |
| | | private String parentWarehouseName; |
| | | /**展示序号*/ |
| | | @Excel(name = "展示序号", width = 15) |
| | | @ApiModelProperty(value = "展示序号") |
| | |
| | | /**创建人*/ |
| | | @Excel(name = "创建人", width = 15) |
| | | @ApiModelProperty(value = "创建人") |
| | | private String createdBy; |
| | | private String createBy; |
| | | /**创建时间*/ |
| | | @Excel(name = "创建时间", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @Excel(name = "创建时间", width = 15, format = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm") |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createdTime; |
| | | private Date createTime; |
| | | /**更新人*/ |
| | | @Excel(name = "更新人", width = 15) |
| | | @ApiModelProperty(value = "更新人") |
| | | private String updatedBy; |
| | | private String updateBy; |
| | | /**更新时间*/ |
| | | @Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm") |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updatedTime; |
| | | private Date updateTime; |
| | | } |