Update Brand.java

cyj
pbvfus8to 2 months ago
parent a120b62b7b
commit 7c93318895

@ -0,0 +1,93 @@
/*
* Copyright (c) 2018-2999 广 All rights reserved.
*
* https://www.mall4j.com/
*
*
*
*
*/
package com.yami.shop.bean.model;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* @author lanhai
*/
@Data
@TableName("tz_brand")
public class Brand implements Serializable {
/**
*
*/
@TableId
private Long brandId;
/**
*
*/
private String brandName;
/**
*
*/
private String brandPic;
/**
* ID
*/
private String userId;
/**
*
*/
private String memo;
/**
*
*/
private Integer seq;
/**
* 1,0线
*/
private Integer status;
/**
*
*/
private String brief;
/**
*
*/
private Date recTime;
/**
*
*/
private Date updateTime;
/**
*
*/
private String firstChar;
/**
*
*/
private String content;
}
Loading…
Cancel
Save