Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • domain
  • Address.java
  • 添加config、system全部实体类mp注解,general包下company和warehouse实体类注解
    f3784207
    mahuandong authored
    2019-07-30 11:43:56 +0800  
    Browse Code »
Address.java 417 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.huaheng.pc.config.address.domain;

import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

/**
 * 表 地址
 *
 * @author ricard
 * @date 2019-04-12
 */
@Data
@TableName(value = "address")
public class Address {
    //id
    private Integer id;
    //仓库编码
    private String warehouseCode;
    //参数,方法
    private String param;
    //地址
    private String url;
}