¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.dnc.entity; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | |
| | | import java.util.Date; |
| | | /** |
| | | * @Description: 产å |
| | | * @author clown |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | @TableName(value = "nc_product_info") |
| | | public class ProductInfo { |
| | | @TableId(value = "product_id") |
| | | private String productId; |
| | | @TableField(value = "product_no") |
| | | private String productNo; |
| | | @TableField(value = "product_model") |
| | | private String productModel; |
| | | @TableField(value = "product_name") |
| | | private String productName; |
| | | @TableField(value = "product_status") |
| | | private Integer productStatus; |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | @TableField(value = "update_time", fill = FieldFill.UPDATE) |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | private Date updateTime; |
| | | @TableField(value = "create_by",fill = FieldFill.INSERT) |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String createBy; |
| | | @TableField(value = "update_by", fill = FieldFill.UPDATE) |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String updateBy; |
| | | @JsonIgnore |
| | | @TableLogic |
| | | @TableField(value = "delete_flag", select = false) |
| | | private Integer deleteFlag = 0; |
| | | |
| | | //å建人 |
| | | private transient String createName; |
| | | //æ´æ°äºº |
| | | private transient String updateName; |
| | | } |