Commit e4fd8474 by wangli

新增

1 parent 9e891550
package com.dituhui.pea.order.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dituhui.pea.order.entity.MapLayerCustomizeSkill;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface MapLayerCustomizeSkillMPDao extends BaseMapper<MapLayerCustomizeSkill> {
}
package com.dituhui.pea.order.entity;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class MapLayerCustomizeSkill {
private Integer id;
private String layerId;
private String skillCode;
private String description;
private Integer status;
private String memo;
private LocalDateTime createTime;
private LocalDateTime updateTime;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!