main
parent
6b46805b86
commit
4bb274ae81
@ -0,0 +1,25 @@
|
||||
package com.nmgs.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2023年10月27日 14:38
|
||||
* @description:
|
||||
*/
|
||||
@Data
|
||||
@TableName("wx_vehiclewx_bind")
|
||||
public class VehicleWxBind {
|
||||
@TableField("vehicleid")
|
||||
private String vehicleid;
|
||||
@TableField("vehiclecolor")
|
||||
private Integer vehiclecolor;
|
||||
@TableField("wxid")
|
||||
private String wxid;
|
||||
@TableField("ismanager")
|
||||
private Integer ismanager;
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.nmgs.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.nmgs.entity.VehicleWxBind;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2023年11月29日 11:42
|
||||
* @description:
|
||||
*/
|
||||
@Mapper
|
||||
public interface VehicleWxBindMapper extends BaseMapper<VehicleWxBind> {
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue