Merge remote-tracking branch 'origin/test' into test
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
package cn.ysk.cashier.pojo.shop;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 店铺打印机配置
|
||||
*
|
||||
* @author tankaikai
|
||||
* @since 2024-09-25 11:49
|
||||
*/
|
||||
@Data
|
||||
@TableName("tb_print_machine")
|
||||
public class TbPrintMachineEntity implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String type;
|
||||
private String connectionType;
|
||||
private String address;
|
||||
private String port;
|
||||
private String subType;
|
||||
private Integer status;
|
||||
private String shopId;
|
||||
private String categoryIds;
|
||||
private String contentType;
|
||||
private String config;
|
||||
private Long createdAt;
|
||||
private Long updatedAt;
|
||||
private String categoryList;
|
||||
private Integer sort;
|
||||
private String vendorId;
|
||||
private String productId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user